Compare commits
9 Commits
version_9
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| e305d21f4f | |||
| c4def11e98 | |||
| 642abf0992 | |||
| 3ef55aa1de | |||
| 4f419e7190 | |||
| ca7c8ee479 | |||
| 79f6346e37 | |||
| 38e5effbc5 | |||
| 372d7b593a |
@@ -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>
|
||||
);
|
||||
}
|
||||
@@ -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 ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
@@ -46,7 +46,7 @@ export default function GalleryPage() {
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
@@ -78,29 +78,26 @@ export default function GalleryPage() {
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
{ label: "Contact", href: "/contact" }]
|
||||
},
|
||||
{ label: "Contact", href: "/contact" }]},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Hardwood Installation", href: "/services#hardwood-installation" },
|
||||
{ label: "Floor Sanding", href: "/services#floor-sanding" },
|
||||
{ label: "Free Estimates", href: "/services#free-estimates" },
|
||||
{ label: "Custom Designs", href: "/services#custom-designs" }]
|
||||
},
|
||||
{ label: "Custom Designs", href: "/services#custom-designs" }]},
|
||||
{
|
||||
title: "About Us", items: [
|
||||
{ label: "Our Story", href: "/#about" },
|
||||
{ label: "Testimonials", href: "/#home-testimonials" },
|
||||
{ label: "Service Areas", href: "/service-areas" },
|
||||
{ label: "FAQs", href: "/contact#faq" }]
|
||||
}]}
|
||||
{ label: "FAQs", href: "/contact" }]}]}
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EsInlEOoSiMI8mFEzeygc6zaoo/uploaded-1780963238289-ovhlz3j6.png"
|
||||
logoAlt="FloorCraft Logo"
|
||||
logoText="FloorCraft"
|
||||
copyrightText="© 2024 FloorCraft. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
@@ -25,7 +25,7 @@ export default function LandingPage() {
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
@@ -159,7 +159,7 @@ export default function LandingPage() {
|
||||
{
|
||||
icon: Calendar,
|
||||
text: "Flexible Scheduling"}],
|
||||
reverse: false}]}
|
||||
reverse: false}]}
|
||||
title="Experience the Art of Flooring with FloorCraft"
|
||||
description="From classic hardwoods to modern finishes, our family's expertise ensures your floors are a masterpiece. Explore our comprehensive services designed to bring beauty and durability to your home."
|
||||
/>
|
||||
@@ -226,14 +226,14 @@ export default function LandingPage() {
|
||||
{
|
||||
label: "Service Areas", href: "/service-areas"},
|
||||
{
|
||||
label: "FAQs", href: "/contact#faq"}]}]}
|
||||
label: "FAQs", href: "/contact"}]}]}
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EsInlEOoSiMI8mFEzeygc6zaoo/uploaded-1780963238289-ovhlz3j6.png"
|
||||
logoAlt="FloorCraft Logo"
|
||||
logoText="FloorCraft"
|
||||
copyrightText="© 2024 FloorCraft. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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 LegalSection from '@/components/legal/LegalSection';
|
||||
@@ -20,7 +20,7 @@ export default function ServiceAreasPage() {
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
@@ -78,7 +78,7 @@ export default function ServiceAreasPage() {
|
||||
{ label: "Our Story", href: "/#about" },
|
||||
{ label: "Testimonials", href: "/#home-testimonials" },
|
||||
{ label: "Service Areas", href: "/service-areas" },
|
||||
{ label: "FAQs", href: "/contact#faq" }
|
||||
{ label: "FAQs", href: "/contact" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -88,7 +88,7 @@ export default function ServiceAreasPage() {
|
||||
copyrightText="© 2024 FloorCraft. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user