import { useTranslations } from "next-intl"; import { TypographyH1, TypographyLead } from "../../components/ui/typography"; import { Badge } from "../../components/ui/badge"; import { Apple, Mail, MapPin, Phone } from "lucide-react"; import Image from "next/image"; import { Button } from "../../components/ui/button"; export default function Home() { const t = useTranslations(); return (
{t('landingPage.title')} {t('landingPage.subtitle')} {t('landingPage.location')}
Picture of me
{/* TODO: social media icons and links */}
); }