diff --git a/src/components/ui/buttons/PrimaryCTA.astro b/src/components/ui/buttons/PrimaryCTA.astro new file mode 100644 index 0000000..075370c --- /dev/null +++ b/src/components/ui/buttons/PrimaryCTA.astro @@ -0,0 +1,26 @@ +--- +const { title, url } = Astro.props; + +interface Props { + title?: string; + url?: string; +} +--- + + + {title} + + diff --git a/src/components/ui/buttons/SecondaryCTA.astro b/src/components/ui/buttons/SecondaryCTA.astro new file mode 100644 index 0000000..7f8ce6c --- /dev/null +++ b/src/components/ui/buttons/SecondaryCTA.astro @@ -0,0 +1,15 @@ +--- +const { title, url } = Astro.props; + +interface Props { + title?: string; + url?: string; +} +--- + + + {title} +