Initial structure for page-cerveau: - Astro 6.3.1 + @astrojs/vue 6.0.1 + Vue 3.5 - Tailwind 4 via @tailwindcss/vite (vs Tailwind 3.4 in prompt; @astrojs/tailwind incompatible with Astro 6 peer deps) - Embla Carousel Vue for mobile swipe (3 strict positions) - src/components/astro/ : 5 placeholder components (Col*, HamburgerMenu, PopupOnboarding) - src/components/vue/ : SwipeContainer + 3 placeholder islands - src/layouts/BaseLayout.astro - src/pages/index.astro (3 cols desktop ; SwipeContainer mobile) + manifeste.astro placeholder - public/data/ ready for PC3 (carte-o.json) + PC6 (journal.json) Build OK (0 errors, 0 warnings); dev server tested localhost:4321 with all components rendering. Note: Astro version is 6.3.1 (latest stable) instead of 5.x specified in prompt; 6.x is current LTS.
13 lines
389 B
Plaintext
13 lines
389 B
Plaintext
---
|
|
// Placeholder hamburger menu — PC2 ajoute liens nav
|
|
---
|
|
<button
|
|
type="button"
|
|
class="fixed top-3 right-3 z-30 p-2 rounded bg-white/80 border border-neutral-200 shadow-sm"
|
|
aria-label="Menu"
|
|
>
|
|
<span class="block w-5 h-0.5 bg-neutral-700 mb-1"></span>
|
|
<span class="block w-5 h-0.5 bg-neutral-700 mb-1"></span>
|
|
<span class="block w-5 h-0.5 bg-neutral-700"></span>
|
|
</button>
|