summaryrefslogtreecommitdiff
path: root/examples/basics/src/pages/index.astro
blob: c04f3602b5521c56580c70dd0846b2c559be7193 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
---
import Welcome from '../components/Welcome.astro';
import Layout from '../layouts/Layout.astro';

// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
---

<Layout>
	<Welcome />
</Layout>