This repository has been archived on 2026-06-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sample-pilumnus/src/pages/index.astro
2022-09-07 17:32:02 +02:00

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>