From d84e6e20bd46102104b01694493f4cf015c61da7 Mon Sep 17 00:00:00 2001 From: Nico Haider Date: Fri, 17 Apr 2026 18:10:27 +0200 Subject: [PATCH] feat(home): fast social links --- app/[locale]/page.tsx | 43 ++++++++++++++++++++++++++++++++----------- 1 file changed, 32 insertions(+), 11 deletions(-) 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 */} + + + +
+
+
); }