Add src/app/contact/page.tsx

This commit is contained in:
2026-04-23 16:53:29 +00:00
parent 7d55654d60
commit 501c45d7b4

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

@@ -0,0 +1,40 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function ContactPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "Reviews", id: "/#testimonials" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="All Weather Pool Service"
/>
<ContactCenter
tag="Contact Us"
title="Get in Touch"
description="Have questions about our services or need to book an appointment? We're here to help."
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
/>
<FooterBaseCard
logoText="All Weather Pool Service"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/#services" }] },
{ title: "Resources", items: [{ label: "Reviews", href: "/#testimonials" }, { label: "Contact", href: "/contact" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}