From 3b3521ca918e9f5be0724d526ee97af3fd0147a1 Mon Sep 17 00:00:00 2001 From: Chneemann Date: Fri, 24 Jul 2026 13:04:38 +0200 Subject: [PATCH] feat: add contact section --- src/app/page.tsx | 2 ++ src/components/Contact.tsx | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 src/components/Contact.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx index 836f4c7..b76dbad 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,7 @@ import Hero from "../components/Hero"; import About from "../components/About"; import Skills from "../components/Skills"; +import Contact from "../components/Contact"; export default function Home() { return ( @@ -8,6 +9,7 @@ export default function Home() { + ); } diff --git a/src/components/Contact.tsx b/src/components/Contact.tsx new file mode 100644 index 0000000..71d3712 --- /dev/null +++ b/src/components/Contact.tsx @@ -0,0 +1,18 @@ +export default function Contact() { + return ( +
+ {/* Title */} +
+

+ // 03. Get in Touch +

+

+ Contact me. +

+
+
+ ); +}