From 1bd2576a8e2d24109fd1af54b4ba0d372cf6e1c7 Mon Sep 17 00:00:00 2001 From: kinou-p Date: Thu, 2 Oct 2025 14:16:57 +0200 Subject: [PATCH] modif logo project card --- src/components/ProjectCard.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/components/ProjectCard.tsx b/src/components/ProjectCard.tsx index 1f51e78..f4fde30 100644 --- a/src/components/ProjectCard.tsx +++ b/src/components/ProjectCard.tsx @@ -1,6 +1,7 @@ import { motion } from "framer-motion"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { useNavigate } from "react-router-dom"; +import { ArrowRight } from "lucide-react"; interface ProjectCardProps { title: string; @@ -31,11 +32,18 @@ export const ProjectCard = ({ title, description, icon, image, technologies, del onClick={handleClick} className={projectId ? "cursor-pointer" : ""} > - + + {/* Indicateur cliquable en bas à droite */} + {projectId && ( +
+ +
+ )} + {image && (
{`${title} @@ -56,7 +64,7 @@ export const ProjectCard = ({ title, description, icon, image, technologies, del {technologies.slice(0, 6).map((tech, index) => (
{tech.iconUrl ? ( @@ -71,7 +79,7 @@ export const ProjectCard = ({ title, description, icon, image, technologies, del
))} {technologies.length > 6 && ( -
+
+{technologies.length - 6}
)}