From 3d3cbd0b2bf5f10ff10862bcb0f21a91e27ebecf Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 07:14:05 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 45 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 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..9f0b6ac --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,45 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ContactPage() { + const navItems = [ + { name: "About", href: "/#about" }, + { name: "Services", href: "/#services" }, + { name: "Testimonials", href: "/#testimonials" }, + { name: "Pricing", href: "/pricing" }, + { name: "Contact", href: "/contact" }, + ]; + + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file