Update src/app/contact/page.tsx

This commit is contained in:
2026-06-10 00:02:36 +00:00
parent 4f419e7190
commit 3ef55aa1de

View File

@@ -1,7 +1,7 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FooterBase from '@/components/sections/footer/FooterBase';
import ContactText from '@/components/sections/contact/ContactText';
@@ -20,14 +20,15 @@ export default function ContactPage() {
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Service Areas", id: "/service-areas" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get a Free Quote", href: "/contact" }}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EsInlEOoSiMI8mFEzeygc6zaoo/uploaded-1780963238289-ovhlz3j6.png"
@@ -63,7 +64,7 @@ export default function ContactPage() {
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "Gallery", href: "/gallery" },
{ label: "Contact", href: "/contact" },
{ label: "Contact", href: "/contact" }
],
},
{
@@ -78,8 +79,8 @@ export default function ContactPage() {
title: "About Us", items: [
{ label: "Our Story", href: "/#about" },
{ label: "Testimonials", href: "/#home-testimonials" },
{ label: "Service Areas", href: "/services#service-areas" },
{ label: "FAQs", href: "/contact" },
{ label: "Service Areas", href: "/service-areas" },
{ label: "FAQs", href: "/contact" }
],
},
]}
@@ -89,7 +90,7 @@ export default function ContactPage() {
copyrightText="© 2024 FloorCraft. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}