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 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