Uses tailwind for most of the homepage styling and adds prettier

This commit is contained in:
2025-06-05 12:28:41 -07:00
parent 2f1edd9851
commit fe707a600e
8 changed files with 985 additions and 339 deletions

View File

@@ -0,0 +1,12 @@
---
interface Props {
href: string;
}
const { href } = Astro.props;
---
<a href={href} class="text-dark bg-primary rounded-md px-8 py-4 font-bold hover:bg-primary-dark">
<slot />
</a>