diff --git a/src/components/Button.astro b/src/components/Button.astro index f3d9a0b..97bc95b 100644 --- a/src/components/Button.astro +++ b/src/components/Button.astro @@ -9,7 +9,7 @@ const { type = "primary", link } = Astro.props; -

{title}

+

{title}

+
+ {tags && tags.map(t => {t})} +
diff --git a/src/components/ProjectCard.astro b/src/components/ProjectCard.astro index 2aa60d3..72f0753 100644 --- a/src/components/ProjectCard.astro +++ b/src/components/ProjectCard.astro @@ -1,18 +1,19 @@ --- interface Props { + type?: string; title: string; description: string; link?: string; repository?: string; } -const {title, description, link, repository} = Astro.props; +const {type, title, description, link, repository} = Astro.props; import ButtonLink from "./Button.astro"; import Card from "./Card.astro"; --- - +

{description}

diff --git a/src/pages/index.astro b/src/pages/index.astro index b2a6504..1f8d33a 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -21,19 +21,24 @@ import ProjectCard from "../components/ProjectCard.astro";

Software Projects

- - - - - @@ -44,14 +49,17 @@ import ProjectCard from "../components/ProjectCard.astro";

Other Projects and Notables

- - -