linear/src/pages/index.astro

10 lines
150 B
Plaintext
Raw Normal View History

2024-03-20 12:12:48 -04:00
---
2024-03-20 23:38:50 -04:00
import Layout from "../layouts/Layout.astro";
import "../styles/global.css";
2024-03-20 12:12:48 -04:00
---
<Layout title="Welcome to Astro.">
2024-03-20 23:38:50 -04:00
<main>
</main>
2024-03-20 12:12:48 -04:00
</Layout>