13 lines
221 B
Plaintext
13 lines
221 B
Plaintext
---
|
|
import Main from '../layouts/Main.astro';
|
|
import Cta from '../components/Cta.astro';
|
|
---
|
|
|
|
<Main title="Welcome to Astro.">
|
|
<main>
|
|
<Cta to="./test">
|
|
Show more
|
|
</Cta>
|
|
</main>
|
|
</Main>
|