import Image from "next/image"; import Link from "next/link"; import { Download } from "lucide-react"; import { Button } from "@/components/ui/button"; import { useTranslation } from "@/utils/translation" export default function Home() { const { t } = useTranslation(); return (

{t('home.title')}

{t('home.description')}

); }