From fc0202422e46a52918d94da12e80fc9db74fff40 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 21:36:35 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 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..779fa0e --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,37 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import ReactLenis from "lenis/react"; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Giving", id: "/giving" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + + + + + + ); +}