- Sidebar with KW navigation (← KW → arrows) - WeekPlanner: 5-column grid (Mo-Fr), Frühstück + Vesper slots - ProductList: searchable table with allergen/additive badges - ProductForm: create/edit with AllergenPicker + AdditivePicker - ProductSearch: autocomplete dropdown for plan entries - DayColumn + MealSlot + EntryCard components - SpecialDayDialog: Feiertag/Schließtag marking - InfoPage: version display + update check - Layout with responsive sidebar - BITV 2.0: aria-labels, focus indicators, min 16px, WCAG AA contrasts - All UI text in German
24 lines
809 B
HTML
24 lines
809 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<meta name="description" content="Kita Speiseplan - Wochenplanungstool für Kindertageseinrichtungen"/>
|
|
<meta name="author" content="Kita Speiseplan"/>
|
|
|
|
<!-- Barrierefreiheit -->
|
|
<meta name="accessibility" content="BITV 2.0 konform"/>
|
|
<meta name="color-scheme" content="light"/>
|
|
|
|
<title>Kita Speiseplan</title>
|
|
|
|
<!-- Prevent zoom on mobile while maintaining accessibility -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"/>
|
|
</head>
|
|
<body>
|
|
<div id="root" aria-label="Kita Speiseplan Anwendung"></div>
|
|
<script src="./src/main.tsx" type="module"></script>
|
|
</body>
|
|
</html>
|
|
|