diff --git a/src/components/ProjectCard.tsx b/src/components/ProjectCard.tsx index e4fc58c..5bc632a 100644 --- a/src/components/ProjectCard.tsx +++ b/src/components/ProjectCard.tsx @@ -1,17 +1,18 @@ import React, { useState } from 'react'; -import { - Box, - Card, - CardContent, - CardMedia, - Typography, - Button, +import { + Box, + Card, + CardContent, + CardMedia, + Typography, + Button, IconButton, Chip, Stack, useTheme, useMediaQuery, - SvgIcon + SvgIcon, + SvgIconProps } from '@mui/material'; import GitHubIcon from '@mui/icons-material/GitHub'; import LaunchIcon from '@mui/icons-material/Launch'; @@ -201,19 +202,50 @@ const ProjectCard: React.FC = ({ project }) => { p: { xs: 2, sm: 3 }, // Responsive padding '&:last-child': { pb: { xs: 2, sm: 3 } } // Override MUI's default padding-bottom }}> - - {project.title} - + {project.title.includes("[WIP]") ? ( + + {project.title.replace("[WIP]", "")} + + [WIP] + + + ) : ( + + {project.title} + + )}