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); + }} + /> +
+ + +
+ ); +} 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" } ]} />