website/src/pages/index.astro

17 lines
769 B
Text

---
import Layout from "../layouts/Layout.astro";
import Card from "../components/Card.astro";
import Badges from "../components/Badges.astro";
---
<Layout title="landing">
<Card title="hello">
<p>hi! i'm <strong>reid</strong> <i>(any pronouns <small>(<a href="https://regex101.com/r/Kpyej0/1" target="_blank">regex</a>)</small>)</i>, welcome to my site</p>
<p>this site was made as a dumping grounds for whatever i decide to put on here eventually, more coming soon, i promise!! the whole thing as a whole is still a work in progress</p>
<p>feel free to look around, and if you have any questions, feel free to ask me on my socials or contact me directly</p>
</Card>
<Card title="buttons">
<Badges/>
</Card>
</Layout>