feat(stellungnahme): Einwendungs-Assistent für Windvorranggebiete
Deploy / verify (push) Successful in 59s
Deploy / deploy (push) Successful in 2m37s

5-Schritt-Wizard: Gebietskontext → Argumente wählen → Ausgabeform →
persönliche Betroffenheit → Absender + Ausgabe. Alle Eingaben bleiben
lokal im Browser (kein Server-Transfer). Fertigtext- und Leitfaden-Modus.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Peter Meier
2026-05-27 14:41:00 +02:00
parent d781b3140e
commit 6d0861bb0a
7 changed files with 771 additions and 1 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ export type TextFragment = {
id?: string;
title?: string;
text?: string;
bulletPoints?: string[];
tags?: Array<{ _slug: string; name?: string } | string>;
};
@@ -17,7 +18,7 @@ export type WindArea = {
investor?: string;
gemeinden?: string[];
stellungnahme?: { _slug: string; slug?: string } | string | null;
stellungnahme_kriterien?: Array<{ _slug: string } | string> | null;
stellungnahme_kriterien?: Array<TextFragment | { _slug: string } | string> | null;
notizen?: string;
geometry?: GeoJSON.Geometry;
};