diff --git a/src/components/projects/small-card.tsx b/src/components/projects/small-card.tsx index a127c62..c235cfd 100644 --- a/src/components/projects/small-card.tsx +++ b/src/components/projects/small-card.tsx @@ -1,14 +1,14 @@ "use client" import { Icon } from "@/components"; -import { +import { Card, CardContent, CardDescription, CardFooter, CardHeader, - CardTitle, - Separator + CardTitle, + Separator } from "@/components/ui"; import { Project } from "@/@types"; import { ProjectsFullCard } from "./full-card"; @@ -38,22 +38,22 @@ export function ProjectsSmallCard({ info }: Readonly) { const nameForAssets = info.name.split(" ").join(""); return ( <> - + {`${info.name} {info.name} - - {t(info.description).split(".")[0]+"."} + + {t(info.description).split(".")[0] + "."} {uniqueTechs.map((tech) => ( - + ))} - + ); }