diff --git a/src/app/page.tsx b/src/app/page.tsx
index cd60f0a..9c6bccc 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,6 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
+import { CheckCircle, Users, Zap, Award } from 'lucide-react';
import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
@@ -31,26 +32,11 @@ export default function LandingPage() {
@@ -58,43 +44,17 @@ export default function LandingPage() {
@@ -223,21 +113,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
metrics={[
- {
- id: "1",
- title: "Projects Completed",
- value: "500+",
- },
- {
- id: "2",
- title: "Happy Clients",
- value: "450+",
- },
- {
- id: "3",
- title: "Years Experience",
- value: "15",
- },
+ { id: "1", title: "Projects Completed", value: "500+", icon: CheckCircle },
+ { id: "2", title: "Happy Clients", value: "450+", icon: Users },
+ { id: "3", title: "Years Experience", value: "15", icon: Award },
]}
title="Our Impact"
description="Delivering excellence one yard at a time."
@@ -250,60 +128,9 @@ export default function LandingPage() {
useInvertedBackground={true}
testimonials={[
{
- id: "1",
- name: "Fred G.",
- date: "Oct 2023",
- title: "Satisfied Customer",
- quote: "Very professional. They keep their schedule with no surprises. I strongly recommend.",
- tag: "Verified",
- avatarSrc: "http://img.b2bpic.net/free-photo/happy-joyful-guy-enjoying-leisure-time_1262-20555.jpg",
- imageSrc: "http://img.b2bpic.net/free-photo/contemporary-house-architecture_23-2151050996.jpg?_wi=2",
- imageAlt: "happy client portrait smiling",
- },
+ id: "1", name: "Fred G.", date: "Oct 2023", title: "Satisfied Customer", quote: "Very professional. They keep their schedule with no surprises. I strongly recommend.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/happy-joyful-guy-enjoying-leisure-time_1262-20555.jpg", imageSrc: "http://img.b2bpic.net/free-photo/contemporary-house-architecture_23-2151050996.jpg"},
{
- id: "2",
- name: "Sarah M.",
- date: "Sep 2023",
- title: "Great Results",
- quote: "My garden has never looked better. Highly recommend their landscaping services.",
- tag: "Verified",
- avatarSrc: "http://img.b2bpic.net/free-photo/smiley-father-posing-with-arms-crossed_23-2148414862.jpg",
- imageSrc: "http://img.b2bpic.net/free-photo/female-legs-woman-using-lawn-mower_651396-1545.jpg?_wi=2",
- imageAlt: "happy client portrait smiling",
- },
- {
- id: "3",
- name: "David W.",
- date: "Aug 2023",
- title: "Professionalism",
- quote: "Efficient and high-quality work. Will hire again.",
- tag: "Verified",
- avatarSrc: "http://img.b2bpic.net/free-photo/friendly-entrepreneur-posing-modern-office_74855-3442.jpg",
- imageSrc: "http://img.b2bpic.net/free-photo/cement-background-crossed-by-diagonal-line-pebbles-stone_158595-6387.jpg?_wi=2",
- imageAlt: "happy client portrait smiling",
- },
- {
- id: "4",
- name: "Emily R.",
- date: "Jul 2023",
- title: "Attention to Detail",
- quote: "They turned my backyard into a beautiful living space.",
- tag: "Verified",
- avatarSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg",
- imageSrc: "http://img.b2bpic.net/free-photo/gardener-garden-with-hut-cuts-tree-with-hedgehogs-against-sky_169016-10257.jpg?_wi=2",
- imageAlt: "happy client portrait smiling",
- },
- {
- id: "5",
- name: "Mark S.",
- date: "Jun 2023",
- title: "Fast Scheduling",
- quote: "Fast service and great results. Very professional.",
- tag: "Verified",
- avatarSrc: "http://img.b2bpic.net/free-photo/woman-smiling_1187-3196.jpg",
- imageSrc: "http://img.b2bpic.net/free-photo/grass-background_1127-3417.jpg?_wi=2",
- imageAlt: "happy client portrait smiling",
- },
+ id: "2", name: "Sarah M.", date: "Sep 2023", title: "Great Results", quote: "My garden has never looked better. Highly recommend their landscaping services.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/smiley-father-posing-with-arms-crossed_23-2148414862.jpg", imageSrc: "http://img.b2bpic.net/free-photo/female-legs-woman-using-lawn-mower_651396-1545.jpg"},
]}
title="What Our Clients Say"
description="Trusted by homeowners across the region."
@@ -315,21 +142,8 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
faqs={[
- {
- id: "1",
- title: "What areas do you serve?",
- content: "We serve the local area and surrounding suburbs.",
- },
- {
- id: "2",
- title: "Are you licensed and insured?",
- content: "Yes, we are fully licensed and insured for your peace of mind.",
- },
- {
- id: "3",
- title: "Do you offer free estimates?",
- content: "Absolutely, we provide no-obligation free estimates.",
- },
+ { id: "1", title: "What areas do you serve?", content: "We serve the local area and surrounding suburbs." },
+ { id: "2", title: "Are you licensed and insured?", content: "Yes, we are fully licensed and insured for your peace of mind." },
]}
imageSrc="http://img.b2bpic.net/free-photo/stone-road_1417-1558.jpg"
title="Frequently Asked Questions"
@@ -341,16 +155,9 @@ export default function LandingPage() {
@@ -358,29 +165,9 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file