From 03c95868c6ba6f5824365d6e5c47ef9048769175 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 09:52:32 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 75 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 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..c8aa22c --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,75 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Github, Instagram, Linkedin, Twitter } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ { + console.log("Form data:", data); + }} + /> +
+ + +
+ ); +} From 92f6dd300a5c8a4c3bc1c674283ce82eb5406faf Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 09:52:32 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0b9a119..b7a6e9a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,9 +33,9 @@ export default function LandingPage() { { name: "Work", id: "features" }, { name: "Process", id: "process" }, { name: "About", id: "about" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "/contact" } ]} - button={{ text: "Get Started", href: "#contact" }} + button={{ text: "Get Started", href: "/contact" }} animateOnLoad={true} /> @@ -56,7 +56,7 @@ export default function LandingPage() { mediaAnimation="slide-up" buttons={[ { text: "Explore Our Work", href: "#features" }, - { text: "Let's Talk", href: "#contact" } + { text: "Let's Talk", href: "/contact" } ]} buttonAnimation="slide-up" tag="Award-Winning Agency" @@ -240,8 +240,8 @@ export default function LandingPage() { background={{ variant: "plain" }} useInvertedBackground={false} buttons={[ - { text: "Start a Project", href: "#" }, - { text: "Schedule a Call", href: "#" } + { text: "Start a Project", href: "/contact" }, + { text: "Schedule a Call", href: "/contact" } ]} />