index.astro

 1---
 2import Layout from '../layouts/Layout.astro';
 3---
 4<Layout title="Astro + Vite 7 Fixture">
 5  <main class="page">
 6    <h1 class="hero-title">Astro + Vite 7 Fixture</h1>
 7    <p class="hero-hook">Static Astro page rendered server-side, hydrated nothing.</p>
 8  </main>
 9</Layout>
10
11<style>
12  body { margin: 0; font-family: system-ui, sans-serif; }
13  .page { padding: 2rem; }
14  .hero-title { font-size: 2rem; margin: 0 0 0.5rem; }
15  .hero-hook { color: #555; }
16</style>