diff --git a/app/[locale]/page.tsx b/app/[locale]/page.tsx index 6d46aef..4d51bff 100644 --- a/app/[locale]/page.tsx +++ b/app/[locale]/page.tsx @@ -1,8 +1,9 @@ import { useTranslations } from "next-intl"; import { TypographyH1, TypographyLead } from "../../components/ui/typography"; import { Badge } from "../../components/ui/badge"; -import { MapPin } from "lucide-react"; +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(); @@ -17,16 +18,36 @@ export default function Home() { {t('landingPage.location')} - Picture of me +
+ Picture of me +
+
+ + +
+
+ {/* TODO: social media icons and links */} + + + +
+
+
); }