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 ( + + + + + + + + ); +}