From c65b1d167af1d96fe75d556a51b6fda7885b965b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 9 May 2026 12:06:09 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 60 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..8259e64 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,60 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import { Twitter, Instagram, Linkedin } from "lucide-react"; +import FooterCard from "@/components/sections/footer/FooterCard"; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "home" }, + { name: "Services", id: "services" }, + { name: "Work", id: "work" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1 From f1d5a306bf88020ca55f7c389bf4eb20cc5818b3 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 9 May 2026 12:06:10 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 114 +++++++++-------------------------------------- 1 file changed, 20 insertions(+), 94 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3dba410..6def7ed 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function WebAgencyThemePage() { { name: "Home", id: "home" }, { name: "Services", id: "services" }, { name: "Work", id: "work" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]; return ( @@ -39,7 +39,7 @@ export default function WebAgencyThemePage() { - + /> ); -} +} \ No newline at end of file -- 2.49.1