Merge version_4 into main #4

Merged
bender merged 1 commits from version_4 into main 2026-04-23 07:39:47 +00:00

View File

@@ -10,7 +10,6 @@ import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGaller
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import TextAbout from '@/components/sections/about/TextAbout';
import { Building, Droplets, LayoutDashboard, Leaf, RefreshCw, Sun } from "lucide-react";
@@ -38,8 +37,6 @@ export default function LandingPage() {
name: "About", id: "about"},
{
name: "Services", id: "features"},
{
name: "Testimonials", id: "testimonials"},
{
name: "Contact", id: "contact"},
]}
@@ -157,34 +154,6 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Sarah Johnson", role: "Homeowner", company: "Stockton", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-beautiful-blond-hair-gentle-smile-dressed-green-robe-with-belt-is-working-greenhouse_197531-12292.jpg"},
{
id: "2", name: "Michael Chen", role: "Business Owner", company: "Stockton", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-attractive-male-gardener-glasses-posing-while-trimming-bush-with-electric-hedge-clippers_7502-10137.jpg"},
{
id: "3", name: "Emily Rodriguez", role: "Homeowner", company: "Stockton", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/focused-photo-grandmother-grandfather-have-fun-outdoors-with-granddaughter-painting-conception_146671-16156.jpg"},
{
id: "4", name: "David Kim", role: "Homeowner", company: "Stockton", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/senior-couple-having-breakfast-garden_23-2148060189.jpg"},
{
id: "5", name: "Rachel Smith", role: "Homeowner", company: "Stockton", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/vertical-closeup-shot-person-taking-photo-traditional-red-house_181624-58540.jpg"},
]}
title="Client Success Stories"
description="See why Stockton homeowners trust our team."
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
useInvertedBackground={false}
@@ -240,8 +209,6 @@ export default function LandingPage() {
title: "Company", items: [
{
label: "About", href: "#about"},
{
label: "Testimonials", href: "#testimonials"},
{
label: "Contact", href: "#contact"},
],
@@ -252,4 +219,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}