diff --git a/src/app/projects/components/ProjectCard.tsx b/src/app/projects/components/ProjectCard.tsx index 671f451f..92ba7ae1 100644 --- a/src/app/projects/components/ProjectCard.tsx +++ b/src/app/projects/components/ProjectCard.tsx @@ -6,6 +6,7 @@ import Image from "next/image"; interface Props { title: string; + parentTitle: string; shortDescription: string; githubUrl?: string; documentationUrl?: string; @@ -16,6 +17,7 @@ export default function ProjectCard({ shortDescription, githubUrl, documentationUrl, + parentTitle, }: Props) { return (
{shortDescription}
- {(githubUrl || documentationUrl) && + {parentTitle !== "Upcoming Projects" && + (githubUrl || documentationUrl) && (githubUrl !== "NA" || documentationUrl !== "NA") && (