From b984cdd0044c71e29453b98fd6ec211d88b314c4 Mon Sep 17 00:00:00 2001 From: NedcloarBR Date: Sun, 26 Jan 2025 15:49:09 -0300 Subject: [PATCH] feat: update small project card --- src/components/projects/small-card.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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) => ( - + ))} - + ); }