{projects.map((project) => (
-
+
))}
diff --git a/src/components/projects/small-card.tsx b/src/components/projects/small-card.tsx
index 6ed13e6..c7e3be5 100644
--- a/src/components/projects/small-card.tsx
+++ b/src/components/projects/small-card.tsx
@@ -1,3 +1,5 @@
+"use client"
+
import {
Card,
CardContent,
@@ -8,32 +10,38 @@ import {
} from "@/components/ui/card";
import { Icon } from "../icon";
import { Separator } from "../ui";
-import { Techs } from "@/@types";
+import { Project } from "@/@types";
+import { ProjectsFullCard } from "./full-card";
+import { useState } from "react";
+import { useTranslations } from "next-intl";
interface ProjectsSmallCardProps {
- name: string;
- description: string;
- techs: Techs[];
+ info: Project
}
-export function ProjectsSmallCard(props: Readonly