18 Commits

Author SHA1 Message Date
5002c80afd Update src/app/contact/page.tsx 2026-06-09 23:27:08 +00:00
4389f8942f Merge version_6 into main
Merge version_6 into main
2026-06-09 23:20:16 +00:00
949ebcfddb Switch to version 6: remove src/middleware.ts 2026-06-09 23:18:52 +00:00
7a8945520d Switch to version 6: remove src/i18n.ts 2026-06-09 23:18:51 +00:00
892ae4d405 Switch to version 6: modified src/app/page.tsx 2026-06-09 23:18:51 +00:00
c941dab6e0 Merge version_7 into main
Merge version_7 into main
2026-06-09 18:19:09 +00:00
cf88db674c Update src/middleware.ts 2026-06-09 18:19:06 +00:00
012cbee2ab Update src/i18n.ts 2026-06-09 18:19:05 +00:00
1415f0e81f Merge version_7 into main
Merge version_7 into main
2026-06-09 18:18:27 +00:00
23e14db1db Update src/middleware.ts 2026-06-09 18:18:24 +00:00
cf045f2fe3 Update src/i18n.ts 2026-06-09 18:18:23 +00:00
57a2c861f2 Merge version_7 into main
Merge version_7 into main
2026-06-09 18:17:43 +00:00
4f81d84966 Update src/middleware.ts 2026-06-09 18:17:36 +00:00
4d96ffda9f Update src/i18n.ts 2026-06-09 18:17:35 +00:00
0fc491d50a Merge version_7 into main
Merge version_7 into main
2026-06-09 18:14:12 +00:00
f6f4a060cc Add src/middleware.ts 2026-06-09 18:14:06 +00:00
1e2b792f1b Add src/i18n.ts 2026-06-09 18:14:05 +00:00
6fb7e95ae6 Update src/app/page.tsx 2026-06-09 18:14:05 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function LandingPage() {
return (
@@ -23,7 +23,7 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
<NavbarStyleApple
navItems={[
{
name: "Home", id: "/"},
@@ -34,31 +34,31 @@ export default function LandingPage() {
{
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"
logoAlt="FloorCraft Logo"
brandName="FloorCraft"
/>
</div>
<div id="contact-form" data-section="contact-form">
<ContactText
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain"}}
text="Ready to Transform Your Floors? Contact Us for a Free Quote Today!"
buttons={[
{
text: "Call Us Now: (770) 374-7706", href: "tel:+15551234567"},
{
text: "Email Us: Floorcraftt@gmail.com", href: "mailto:info@floorcraft.com"},
]}
title="Ready to Transform Your Floors?"
description="Contact Us for a Free Quote Today!"
tag="Get in Touch"
imageSrc="https://img.b2bpic.net/free-photo/young-man-working-computer-desk_23-2147814498.jpg?id=433612503"
imageAlt="Contact us for a free quote"
mediaPosition="right"
mediaAnimation="slide-up"
inputPlaceholder="Your Email"
buttonText="Submit Request"
termsText="By submitting, you agree to our Terms and Conditions."
onSubmit={(email) => console.log(email)}
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
<FaqSplitMedia
textboxLayout="default"
useInvertedBackground={true}
faqs={[
@@ -78,56 +78,25 @@ export default function LandingPage() {
title="Common Questions About Flooring"
description="Got questions? We've got answers. Find out everything you need to know about hardwood installation, sanding, maintenance, and our process."
faqsAnimation="slide-up"
imageSrc="https://img.b2bpic.net/free-photo/modern-interior-design-with-empty-wall_23-2151044458.jpg?id=413550269"
imageAlt="FAQ section media"
mediaAnimation="slide-up"
mediaPosition="left"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Navigation", items: [
{
label: "Home", href: "/"},
{
label: "Services", href: "/services"},
{
label: "Gallery", href: "/gallery"},
{
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"},
],
},
{
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#faq"},
],
},
]}
<FooterLogoReveal
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."
leftLink={{
text: "Home", href: "/"}}
rightLink={{
text: "Contact", href: "/contact"}}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}