import { motion } from "framer-motion"; import { useLanguage } from "@/contexts/LanguageContext"; import { ProjectCard } from "@/components/ProjectCard"; import { Server, Gamepad2, Cloud, Terminal, Box } from "lucide-react"; export const ProjectsSection = () => { const { t } = useLanguage(); const projects = [ { key: "nas", icon: , }, { key: "transcendence", icon: , }, { key: "cloud", icon: , }, { key: "minishell", icon: , }, { key: "cube3d", icon: , }, ]; return ( {t("projects.title")} {t("projects.subtitle")} {projects.map((project, index) => ( ))} ); };
{t("projects.subtitle")}