diff --git a/src/components/Accordion.astro b/src/components/Accordion.astro index 53de57f..bfee392 100644 --- a/src/components/Accordion.astro +++ b/src/components/Accordion.astro @@ -16,7 +16,7 @@ const { institution, qualification, grades, isOpen = false } = Astro.props; -

+

{qualification}

@@ -26,7 +26,7 @@ const { institution, qualification, grades, isOpen = false } = Astro.props; />
-
+

{institution}

diff --git a/src/components/Article.astro b/src/components/Article.astro index c061a4c..6a611b6 100644 --- a/src/components/Article.astro +++ b/src/components/Article.astro @@ -28,16 +28,16 @@ const listFormatter = new Intl.ListFormat("en-GB", { updated={article.data.updated} tags={article.data.tags} > -
+

{article.data.title}{article.data.description}

@@ -79,9 +79,7 @@ const listFormatter = new Intl.ListFormat("en-GB", { }
-
+
diff --git a/src/components/Button.astro b/src/components/Button.astro new file mode 100644 index 0000000..f020ca7 --- /dev/null +++ b/src/components/Button.astro @@ -0,0 +1,16 @@ +--- +type Props = { + href: String; + link: String; +}; + +const { href, link } = Astro.props; +--- + + +
+ {link} +
+
diff --git a/src/components/Footer.astro b/src/components/Footer.astro index de19638..6ee6102 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -4,59 +4,54 @@ import Link from "@components/Link.astro"; import { Icon } from "astro-icon/components"; --- -