fries-website/src/pages/index.astro

15 lines
316 B
Plaintext

---
import Layout from "../layouts/Layout.astro";
import Header from "../components/Header.astro";
import Introduction from "../components/Introduction.astro";
import Links from "../components/Links.astro";
---
<Layout title="fries gay place">
<main>
<Header />
<Introduction />
<Links />
</main>
</Layout>