Add src/app/contact/page.tsx
This commit is contained in:
21
src/app/contact/page.tsx
Normal file
21
src/app/contact/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user