6 Commits

Author SHA1 Message Date
ff34b377a1 Update src/app/page.tsx 2026-04-18 16:57:53 +00:00
86cd172114 Merge version_24 into main
Merge version_24 into main
2026-04-18 16:57:01 +00:00
ad25590f9c Update src/app/page.tsx 2026-04-18 16:56:58 +00:00
4c9904700d Merge version_24 into main
Merge version_24 into main
2026-04-18 16:56:32 +00:00
7a49784494 Update src/app/page.tsx 2026-04-18 16:56:29 +00:00
b7c1a36e28 Merge version_23 into main
Merge version_23 into main
2026-04-18 16:50:23 +00:00

View File

@@ -2,14 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import TeamCardFive from '@/components/sections/team/TeamCardFive'; import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -30,10 +29,10 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ name: "About", id: "/about"}, { name: "About", id: "/about"},
{ name: "Services", id: "services"}, { name: "Services", id: "#services"},
{ name: "Team", id: "team"}, { name: "Team", id: "#team"},
{ name: "Testimonials", id: "testimonials"}, { name: "Testimonials", id: "#testimonials"},
{ name: "FAQ", id: "faq"}, { name: "FAQ", id: "#faq"},
{ name: "Contact", id: "/contact"}, { name: "Contact", id: "/contact"},
]} ]}
brandName="Lackawanna" brandName="Lackawanna"
@@ -101,24 +100,28 @@ export default function LandingPage() {
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen <TestimonialCardTwo
animationType="slide-up" animationType="slide-up"
textboxLayout="split-description" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ title="Testimonials"
{ id: "1", name: "Barry H.", role: "Loyal Customer", company: "FL", rating: 5 }, description="See what our clients say about our work."
{ id: "2", name: "Melissa C.", role: "Regular Client", company: "NY", rating: 5 }, testimonials={[
{ id: "3", name: "Tom K.", role: "Local Resident", company: "NJ", rating: 5 }, {
{ id: "4", name: "Sarah J.", role: "Frequent Visitor", company: "NJ", rating: 5 }, id: "1",
{ id: "5", name: "Michael P.", role: "Client", company: "NY", rating: 5 }, name: "Client One",
]} role: "Local Customer",
kpiItems={[ testimonial: "Exceptional service and great atmosphere.",
{ value: "100+", label: "Weekly Cuts" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CRaO5i0elf1aDIpszoFKWNR31x/uploaded-1776531377369-oo06t3wn.png"
{ value: "20+", label: "Years Served" }, },
{ value: "5★", label: "Rating Average" }, {
]} id: "2",
title="What Our Clients Say" name: "Client Two",
description="We are proud to serve our community and deliver the best cuts in town." role: "Regular Visitor",
testimonial: "Always get a perfect fade here.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CRaO5i0elf1aDIpszoFKWNR31x/uploaded-1776531377370-5uotcrix.png"
}
]}
/> />
</div> </div>