Initial setup

This commit is contained in:
Alexis
2022-09-07 17:32:02 +02:00
parent 44a588ae92
commit d5f90fab75
15 changed files with 9859 additions and 0 deletions

9
src/components/Cta.astro Normal file
View File

@@ -0,0 +1,9 @@
---
export interface Props {
to?: String
}
---
<button class="text-primary bg-none uppercase font-bold py-4 px-8 border-primary border hover:bg-primary hover:text-white transition-colors ease-in-out duration-300">
<slot />
</button>