diff --git a/src/app/page.tsx b/src/app/page.tsx index 9556bf1..7818bce 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 { Zap, Shield, Home, Droplets } from 'lucide-react'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FooterSimple from '@/components/sections/footer/FooterSimple'; @@ -30,26 +31,11 @@ export default function LandingPage() { @@ -99,30 +64,10 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - title: "Roof Replacement", - description: "Full-scale premium roof replacements that increase home value.", - imageSrc: "http://img.b2bpic.net/free-photo/man-working-with-protection-helmet-full-shot_23-2149343641.jpg", - buttonIcon: "Zap", - }, - { - title: "Roof Repairs", - description: "Expert repairs for shingles, leaks, and weather-related damage.", - imageSrc: "http://img.b2bpic.net/free-photo/worker-cuts-steel-profiles-drywall-close-up-selective-focus-preparing-installation-ceiling-profile-system-frame-renovation-repair_166373-1903.jpg", - buttonIcon: "Shield", - }, - { - title: "Siding Installation", - description: "High-performance siding upgrades to revitalize your home's look.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290155.jpg", - buttonIcon: "Home", - }, - { - title: "Gutters & Trim", - description: "Precision drainage systems designed to handle any storm.", - imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-japan-business-district_23-2148836786.jpg", - buttonIcon: "Droplets", - }, + { title: "Roof Replacement", description: "Full-scale premium roof replacements that increase home value.", imageSrc: "http://img.b2bpic.net/free-photo/man-working-with-protection-helmet-full-shot_23-2149343641.jpg", buttonIcon: Zap }, + { title: "Roof Repairs", description: "Expert repairs for shingles, leaks, and weather-related damage.", imageSrc: "http://img.b2bpic.net/free-photo/worker-cuts-steel-profiles-drywall-close-up-selective-focus-preparing-installation-ceiling-profile-system-frame-renovation-repair_166373-1903.jpg", buttonIcon: Shield }, + { title: "Siding Installation", description: "High-performance siding upgrades to revitalize your home's look.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-peson-with-their-frinds_23-2149290155.jpg", buttonIcon: Home }, + { title: "Gutters & Trim", description: "Precision drainage systems designed to handle any storm.", imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-japan-business-district_23-2148836786.jpg", buttonIcon: Droplets }, ]} title="Premium Roofing Services" description="We deliver high-end exterior solutions with a focus on durability, aesthetics, and unmatched quality standards." @@ -136,42 +81,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={true} products={[ - { - id: "1", - name: "Roof Transformation A", - price: "Before", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-water-drips-morning-dew-car-window_181624-3141.jpg", - }, - { - id: "2", - name: "Roof Transformation A", - price: "After", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-with-earphones_23-2149343656.jpg", - }, - { - id: "3", - name: "Siding Transformation B", - price: "Before", - imageSrc: "http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-13015.jpg", - }, - { - id: "4", - name: "Siding Transformation B", - price: "After", - imageSrc: "http://img.b2bpic.net/free-photo/old-rural-house-with-canopy-entrance_1268-15654.jpg", - }, - { - id: "5", - name: "Commercial Project C", - price: "Before", - imageSrc: "http://img.b2bpic.net/free-photo/view-building-with-reflective-windows_23-2148252788.jpg", - }, - { - id: "6", - name: "Commercial Project C", - price: "After", - imageSrc: "http://img.b2bpic.net/free-photo/modern-design-stone-building_23-2148252734.jpg", - }, + { id: "1", name: "Roof Transformation A", price: "Before", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-water-drips-morning-dew-car-window_181624-3141.jpg" }, + { id: "2", name: "Roof Transformation A", price: "After", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-with-earphones_23-2149343656.jpg" }, + { id: "3", name: "Siding Transformation B", price: "Before", imageSrc: "http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-13015.jpg" }, + { id: "4", name: "Siding Transformation B", price: "After", imageSrc: "http://img.b2bpic.net/free-photo/old-rural-house-with-canopy-entrance_1268-15654.jpg" }, + { id: "5", name: "Commercial Project C", price: "Before", imageSrc: "http://img.b2bpic.net/free-photo/view-building-with-reflective-windows_23-2148252788.jpg" }, + { id: "6", name: "Commercial Project C", price: "After", imageSrc: "http://img.b2bpic.net/free-photo/modern-design-stone-building_23-2148252734.jpg" }, ]} title="Before & After Transformations" description="See the impact of our precision craftsmanship across Ocean County." @@ -182,42 +97,13 @@ export default function LandingPage() {