diff --git a/src/components/Button.astro b/src/components/Button.astro index aeb79bf..7ebaa78 100644 --- a/src/components/Button.astro +++ b/src/components/Button.astro @@ -1,9 +1,24 @@ --- interface Props { + shape: "square" | "rounded"; text: string; + type: "primary" | "secondary"; } -const { text } = Astro.props as Props; +const { shape, text, type } = Astro.props as Props; --- -{text} + + {text} + diff --git a/src/components/Jumbotron.astro b/src/components/Jumbotron.astro index 5551194..1ac3d71 100644 --- a/src/components/Jumbotron.astro +++ b/src/components/Jumbotron.astro @@ -6,8 +6,10 @@ interface Props { const { title } = Astro.props as Props; --- -
{title}
+{title}
+- Something short and leading about the collection below—its contents, the - creator, etc. Make it short and sweet, but not too short so folks don't - simply skip over it entirely. -
++ Something short and leading about the collection below—its contents, the + creator, etc. Make it short and sweet, but not too short so folks don't + simply skip over it entirely. +
-