diff --git a/src/app/page.tsx b/src/app/page.tsx
index 71b9960..37a1d78 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 { Home, Settings, Wrench, Users, Phone } from "lucide-react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterBase from '@/components/sections/footer/FooterBase';
@@ -29,26 +30,11 @@ export default function LandingPage() {
@@ -56,20 +42,12 @@ export default function LandingPage() {
@@ -151,60 +104,16 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
- {
- id: "1",
- name: "Alice Johnson",
- role: "Homeowner",
- company: "Resident",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-standing-near-house_250224-214.jpg",
- },
- {
- id: "2",
- name: "Bob Smith",
- role: "Business Owner",
- company: "Commercial",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/man-enjoying-cup-matcha-tea_23-2150215074.jpg",
- },
- {
- id: "3",
- name: "Carol White",
- role: "Homeowner",
- company: "Resident",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/cheerful-couple-having-fun-while-moving-into-new-home-packing-unpacking-boxes-with-their-stuff-blonde-girl-with-long-hair-sitting-man-s-back_197531-1636.jpg",
- },
- {
- id: "4",
- name: "David Miller",
- role: "Homeowner",
- company: "Resident",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/front-view-senior-woman-talking-her-phone_23-2148404395.jpg",
- },
- {
- id: "5",
- name: "Eve Davis",
- role: "Homeowner",
- company: "Resident",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/man-street-using-mobile-phone_657883-744.jpg",
- },
+ { id: "1", name: "Alice Johnson", role: "Homeowner", company: "Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-standing-near-house_250224-214.jpg" },
+ { id: "2", name: "Bob Smith", role: "Business Owner", company: "Commercial", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-enjoying-cup-matcha-tea_23-2150215074.jpg" },
+ { id: "3", name: "Carol White", role: "Homeowner", company: "Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-couple-having-fun-while-moving-into-new-home-packing-unpacking-boxes-with-their-stuff-blonde-girl-with-long-hair-sitting-man-s-back_197531-1636.jpg" },
+ { id: "4", name: "David Miller", role: "Homeowner", company: "Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-senior-woman-talking-her-phone_23-2148404395.jpg" },
+ { id: "5", name: "Eve Davis", role: "Homeowner", company: "Resident", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-street-using-mobile-phone_657883-744.jpg" },
]}
kpiItems={[
- {
- value: "1500+",
- label: "Roofs Replaced",
- },
- {
- value: "12+",
- label: "Years Experience",
- },
- {
- value: "99%",
- label: "Client Satisfaction",
- },
+ { value: "1500+", label: "Roofs Replaced" },
+ { value: "12+", label: "Years Experience" },
+ { value: "99%", label: "Client Satisfaction" },
]}
title="What Our Clients Say"
description="Read honest reviews from satisfied homeowners who trusted us with their roofing projects."
@@ -217,30 +126,11 @@ export default function LandingPage() {
title="Request Your Free Estimate"
description="Ready to start your roofing project? Fill out the form and our team will get in touch shortly to schedule a consultation."
inputs={[
- {
- name: "name",
- type: "text",
- placeholder: "Your Name",
- required: true,
- },
- {
- name: "email",
- type: "email",
- placeholder: "Email Address",
- required: true,
- },
- {
- name: "phone",
- type: "tel",
- placeholder: "Phone Number",
- required: true,
- },
+ { name: "name", type: "text", placeholder: "Your Name", required: true },
+ { name: "email", type: "email", placeholder: "Email Address", required: true },
+ { name: "phone", type: "tel", placeholder: "Phone Number", required: true },
]}
- textarea={{
- name: "message",
- placeholder: "How can we help?",
- rows: 4,
- }}
+ textarea={{ name: "message", placeholder: "How can we help?", rows: 4 }}
imageSrc="http://img.b2bpic.net/free-photo/cross-stitch-pattern_23-2148145972.jpg"
/>
@@ -249,54 +139,24 @@ export default function LandingPage() {