diff --git a/public/hands/images/churu-holder.png b/public/hands/images/churu-holder.png new file mode 100644 index 0000000..1a36405 Binary files /dev/null and b/public/hands/images/churu-holder.png differ diff --git a/src/components/ProjectCard.astro b/src/components/ProjectCard.astro index f055016..b3d3b69 100644 --- a/src/components/ProjectCard.astro +++ b/src/components/ProjectCard.astro @@ -4,28 +4,58 @@ interface Props { shortDescription: string; techStack: string[]; homepageUrl: string; + micrositePath?: string; gitHubUrl: string; index?: number; } -const { name, shortDescription, techStack, homepageUrl, gitHubUrl, index = 0 } = Astro.props; +const { + name, + shortDescription, + techStack, + homepageUrl, + micrositePath, + gitHubUrl, + index = 0, +} = Astro.props; const jerseyNumber = String(index + 1).padStart(2, '0'); ---
{jerseyNumber} PROJECT - +

{name}

{shortDescription}

{techStack.join(', ')}

+ +