import { motion } from "framer-motion"; import ProjectCard from "@/components/ProjectCard"; import LangSwitch from "@/components/LangSwitch"; import { LangProvider, useT } from "@/hooks/useLang"; const PageContent = () => { const t = useT(); return (
{/* Lang Switch */}
{/* Header */}

{t.title}

{t.subtitle}

{/* Project Cards */}
{/* Footer */}

{t.footer}

); }; const Index = () => ( ); export default Index;