Add src/app/contact/page.tsx

This commit is contained in:
2026-05-18 10:57:31 +00:00
parent ce3ffe71fe
commit 87c370746f

21
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,21 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function ContactPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen navItems={[{name: "Services", id: "/services"}, {name: "Process", id: "/#process"}, {name: "Case Studies", id: "/case-studies"}, {name: "Contact", id: "/contact"}]} brandName="Spanks" />
<main className="py-24 px-6">
<h1 className="text-4xl font-bold mb-8">Contact Us</h1>
<p>Ready to start your transformation? Get in touch with our team today.</p>
</main>
<FooterBaseReveal logoText="Spanks" columns={[{title: "Agency", items: [{label: "Services", href: "/services"}, {label: "About", href: "/#about"}]}, {title: "Legal", items: [{label: "Privacy", href: "/privacy"}, {label: "Terms", href: "/terms"}]}]} />
</ReactLenis>
</ThemeProvider>
);
}