diff --git a/public/img/projects/acecore.png b/public/img/projects/acecore.png new file mode 100644 index 0000000..043d7c7 Binary files /dev/null and b/public/img/projects/acecore.png differ diff --git a/public/img/projects/discord-rpc.png b/public/img/projects/discord-rpc.png new file mode 100644 index 0000000..29c3e4e Binary files /dev/null and b/public/img/projects/discord-rpc.png differ diff --git a/public/img/projects/sca.png b/public/img/projects/sca.png new file mode 100644 index 0000000..4cec9da Binary files /dev/null and b/public/img/projects/sca.png differ diff --git a/src/components/ProjectCard.astro b/src/components/ProjectCard.astro index 3a32710..5141943 100644 --- a/src/components/ProjectCard.astro +++ b/src/components/ProjectCard.astro @@ -1,17 +1,20 @@ --- +import { array } from "astro/zod"; + interface Props { name: string; href?: string; + gallery?: string | string[]; } -const { name, href } = Astro.props; +const { name, href, gallery } = Astro.props; ---