diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..6d2017f --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,81 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function ContactPage() { + const updatedNavItems = [ + { name: "Work", href: "#work" }, + { name: "Services", href: "#services" }, + { name: "About", href: "#about" }, + { name: "Pricing", href: "/pricing" }, + { name: "Contact", href: "/contact" }, + ]; + + return ( + + + + + + + + ); +}