diff --git a/apps/dashboard/src/app/project-showcase/page.tsx b/apps/dashboard/src/app/project-showcase/page.tsx index 72bc63e675d..cdf1fc52100 100644 --- a/apps/dashboard/src/app/project-showcase/page.tsx +++ b/apps/dashboard/src/app/project-showcase/page.tsx @@ -1,7 +1,9 @@ +import { FileText } from "lucide-react"; import type { Metadata } from "next"; import Image from "next/image"; import Link from "next/link"; import { Badge } from "../../@/components/ui/badge"; +import { Button } from "../../@/components/ui/button"; import { Card, CardContent, @@ -127,43 +129,57 @@ export default function ProjectShowcasePage({
{paginatedProjects.map((project) => ( - +
- {/* eslint-disable @next/next/no-img-element */} - {project.title} - - {project.title} - {project.description} - - -
- {project.industries?.map((industry) => ( - - {industry} - - ))} + + {/* eslint-disable @next/next/no-img-element */} + {project.title} + + {project.title} + {project.description} + + + +
+
+ {project.industries?.map((industry) => ( + + {industry} + + ))} +
+ {project.case_study && ( + e.stopPropagation()} + > + + + )}
- +
))}