23 lines
381 B
Plaintext
23 lines
381 B
Plaintext
---
|
|
import Heading from '../components/Heading.astro';
|
|
import Hero from '../components/home/Hero.astro';
|
|
import Tooling from '../components/home/Tooling.astro';
|
|
import Layout from '../layouts/Layout.astro';
|
|
---
|
|
|
|
<Layout>
|
|
<main>
|
|
<Hero>
|
|
<Heading tag="h1">
|
|
Titre
|
|
</Heading>
|
|
|
|
<p>
|
|
Test
|
|
</p>
|
|
</Hero>
|
|
|
|
<Tooling />
|
|
</main>
|
|
</Layout>
|