2 Commits

Author SHA1 Message Date
6c0dfe4f99 Update src/app/page.tsx 2026-06-11 14:55:53 +00:00
20bcce29fe Merge version_3 into main
Merge version_3 into main
2026-06-11 14:54:38 +00:00

View File

@@ -11,7 +11,6 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Briefcase, Building2, DollarSign, Home, Layers, Recycle, Sparkles, Trash2, Users, Warehouse, HardHat } from "lucide-react"; import { Briefcase, Building2, DollarSign, Home, Layers, Recycle, Sparkles, Trash2, Users, Warehouse, HardHat } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
@@ -40,8 +39,6 @@ export default function LandingPage() {
name: "Services", id: "#services"}, name: "Services", id: "#services"},
{ {
name: "Gallery", id: "#gallery"}, name: "Gallery", id: "#gallery"},
{
name: "Testimonials", id: "#testimonials"},
{ {
name: "Pricing", id: "#pricing"}, name: "Pricing", id: "#pricing"},
{ {
@@ -218,41 +215,6 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
carouselMode="buttons"
testimonials={[
{
id: "t1", name: "Sarah Johnson", role: "Homeowner", company: "Maplewood, NJ", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/user-front-side-with-white-background_187299-40007.jpg", imageAlt: "Sarah Johnson profile"},
{
id: "t2", name: "Mark Chen", role: "Property Manager", company: "Newark, NJ", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/square-user-profile-front-side_187299-39570.jpg", imageAlt: "Mark Chen profile"},
{
id: "t3", name: "Jessica Lee", role: "Real Estate Agent", company: "Hoboken, NJ", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/user-sign-icon-front-side-with-white-background_187299-40022.jpg", imageAlt: "Jessica Lee profile"},
{
id: "t4", name: "David Smith", role: "Small Business Owner", company: "Jersey City, NJ", rating: 5,
imageSrc: "http://img.b2bpic.net/free-vector/four-diverse-avatars-line-style_78370-10169.jpg", imageAlt: "David Smith profile"},
{
id: "t5", name: "Amanda Rodriguez", role: "Estate Executor", company: "Montclair, NJ", rating: 5,
imageSrc: "http://img.b2bpic.net/free-vector/set-avatars-sketches_23-2147665159.jpg", imageAlt: "Amanda Rodriguez profile"},
]}
kpiItems={[
{
value: "500+", label: "Projects Completed"},
{
value: "99%", label: "Customer Satisfaction"},
{
value: "100%", label: "On-Time Service"},
]}
title="What Our Clients Say"
description="Hear directly from homeowners, property managers, and businesses who experienced our exceptional cleanout services."
/>
</div>
<div id="pricing" data-section="pricing"> <div id="pricing" data-section="pricing">
<PricingCardOne <PricingCardOne
@@ -362,4 +324,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }