diff --git a/src/app/page.tsx b/src/app/page.tsx index b9f96f8..8124f0f 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 { BarChart, Users, Star } from 'lucide-react'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; @@ -31,26 +32,13 @@ export default function LandingPage() {
@@ -127,21 +77,9 @@ export default function LandingPage() { title="Our Professional Services" description="Providing comprehensive construction and maintenance solutions." accordionItems={[ - { - id: "s1", - title: "Roofing", - content: "Full range of premium stone-coated tiles and shingles.", - }, - { - id: "s2", - title: "Waterproofing", - content: "Advanced APP membranes and sealing for long-term protection.", - }, - { - id: "s3", - title: "Fit-Outs & Facility Management", - content: "Professional office and residential finishings and facility care.", - }, + { id: "s1", title: "Roofing", content: "Full range of premium stone-coated tiles and shingles." }, + { id: "s2", title: "Waterproofing", content: "Advanced APP membranes and sealing for long-term protection." }, + { id: "s3", title: "Fit-Outs & Facility Management", content: "Professional office and residential finishings and facility care." } ]} imageSrc="http://img.b2bpic.net/free-photo/woodworking-expert-examining-timber-block-damages-sanding-with-sandpaper_482257-89256.jpg" mediaAnimation="slide-up" @@ -155,60 +93,9 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "p1", - brand: "Divine", - name: "Stone-Coated Tiles", - price: "KES 1,200", - rating: 5, - reviewCount: "12", - imageSrc: "http://img.b2bpic.net/free-photo/rusted-galvanized-iron_53876-147689.jpg", - }, - { - id: "p2", - brand: "Eurotegola", - name: "Shingles", - price: "KES 950", - rating: 5, - reviewCount: "8", - imageSrc: "http://img.b2bpic.net/free-photo/idea-simple-wallpaper-your-desktop-varied-pattern-track-made-multicolored-rectangular-brick-tiles-abstract-background-from-old-brick-ceramic-cobblestone-top-view_166373-2667.jpg", - }, - { - id: "p3", - brand: "Deco", - name: "APP Membranes", - price: "KES 4,500", - rating: 4, - reviewCount: "5", - imageSrc: "http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-13113.jpg", - }, - { - id: "p4", - brand: "Standard", - name: "Steel Sheet", - price: "KES 800", - rating: 4, - reviewCount: "3", - imageSrc: "http://img.b2bpic.net/free-photo/man-working-mdf-boards-warehouse_23-2149384865.jpg", - }, - { - id: "p5", - brand: "Elite", - name: "Fixing Kit", - price: "KES 2,100", - rating: 5, - reviewCount: "10", - imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15999.jpg", - }, - { - id: "p6", - brand: "Premium", - name: "Sealant", - price: "KES 500", - rating: 4, - reviewCount: "7", - imageSrc: "http://img.b2bpic.net/free-photo/concrete-building_1127-2031.jpg", - }, + { id: "p1", brand: "Divine", name: "Stone-Coated Tiles", price: "KES 1,200", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/rusted-galvanized-iron_53876-147689.jpg" }, + { id: "p2", brand: "Eurotegola", name: "Shingles", price: "KES 950", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/idea-simple-wallpaper-your-desktop-varied-pattern-track-made-multicolored-rectangular-brick-tiles-abstract-background-from-old-brick-ceramic-cobblestone-top-view_166373-2667.jpg" }, + { id: "p3", brand: "Deco", name: "APP Membranes", price: "KES 4,500", rating: 4, reviewCount: "5", imageSrc: "http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-13113.jpg" } ]} title="Featured Premium Products" description="High-quality roofing supplies from world-class manufacturers." @@ -221,21 +108,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} metrics={[ - { - id: "m1", - title: "Years Experience", - value: "17+", - }, - { - id: "m2", - title: "Satisfied Clients", - value: "500+", - }, - { - id: "m3", - title: "Google Rating", - value: "4.9", - }, + { id: "m1", icon: BarChart, title: "Years Experience", value: "17+" }, + { id: "m2", icon: Users, title: "Satisfied Clients", value: "500+" }, + { id: "m3", icon: Star, title: "Google Rating", value: "4.9" } ]} title="Deco Roofing by the Numbers" description="Committed to quality service and proven expertise." @@ -246,15 +121,7 @@ export default function LandingPage() {