chore: complete update

This commit is contained in:
2025-07-17 16:24:20 +02:00
parent 899227b0a4
commit 64a7051137
1300 changed files with 85570 additions and 2756 deletions

View File

@@ -0,0 +1,34 @@
✅ Dein Router-Modul wurde erweitert um:
---
## 🎭 Layout-Animation
```js
import { animateLayoutSwitch } from './router.js';
onLayoutSwitch(ctx => {
const type = ctx.href.startsWith('/studio') ? 'studio' : 'default';
animateLayoutSwitch(type);
});
```
→ Fügt `data-layout="…"`, animiert via `.layout-transition` (z.B. Fade)
---
## 📝 Meta-Daten aus HTML
```html
<div data-meta-title="Über Uns" data-meta-theme="#111"></div>
```
→ Beim Laden des HTML werden automatisch:
* `document.title` gesetzt
* CSS-Variable `--theme-color` aktualisiert
---
Wenn du möchtest, kann ich dir nun einen `<meta name="theme-color">`-Updater bauen oder eine ViewTransition speziell für Layoutwechsel. Sag einfach:
**„Ja, bitte meta\[name=theme-color]“** oder **„ViewTransition für Layout“**.