diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index 11a78ab..5469f42 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -6,162 +6,138 @@ import FeaturesImageBento from '@/components/sections/features/FeaturesImageBent
import HeroBillboardBrand from '@/components/sections/hero/HeroBillboardBrand';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
-import { CheckCircle, Clock, Home } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
return (
<>
-
-
+
+
-
-
+ brand="Keystone Construction & Mechanical LLC"
+ description="Quality residential craftsmanship in Millersburg, PA. From custom remodels to complete home flips, we build your vision to last."
+ primaryButton={{
+ text: "Get a Quote", href: "#contact"
+ }}
+ secondaryButton={{
+ text: "View Projects", href: "#gallery"
+ }}
+ imageSrc="http://img.b2bpic.net/free-photo/enjoying-morning-sun-before-start-work_329181-11779.jpg"
+ />
+
+
-
-
+
+ title="Built on Trust, Driven by Quality"
+ primaryButton={{
+ text: "Learn More", href: "#services"
+ }}
+ />
+
+
-
-
+
+
-
-
+ tag="Our Expertise"
+ title="Complete Home Solutions"
+ description="Comprehensive residential services tailored to your lifestyle."
+ items={[
+ { title: "Kitchen Remodels", description: "Custom cabinets, countertops, and layouts.", imageSrc: "http://img.b2bpic.net/free-photo/attic-kitchen-wooden-ceiling-modern-blue-fronts_169016-68929.jpg" },
+ { title: "Bathroom Upgrades", description: "Modern fixtures, tile work, and walk-in showers.", imageSrc: "http://img.b2bpic.net/free-photo/interior-design-decoration_181624-57833.jpg" },
+ { title: "Custom Decks", description: "Durable outdoor living spaces built to last.", imageSrc: "http://img.b2bpic.net/free-photo/man-black-wooden-jetty-maldives_505751-5535.jpg" },
+ { title: "Windows & Siding", description: "Enhance curb appeal and energy efficiency.", imageSrc: "http://img.b2bpic.net/free-photo/photo-wood-texture-pattern_58702-13015.jpg" },
+ { title: "Concrete Work", description: "Foundations, sidewalks, and patios.", imageSrc: "http://img.b2bpic.net/free-photo/male-worker-screeding-floor-construction-site_651396-2362.jpg" },
+ { title: "Home Flips", description: "Expertly managed property investments.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-restoring-furniture_23-2150232662.jpg" },
+ { title: "General Contracting", description: "Mechanical systems and full project oversight.", imageSrc: "http://img.b2bpic.net/free-photo/architectural-project-with-different-tools-composition-with-copy-space_23-2148540123.jpg" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Portfolio"
+ title="Recent Residential Projects"
+ description="See the precision we bring to every Millersburg project."
+ items={[
+ { title: "Modern Kitchen Expansion", tags: ["Remodel", "Millersburg"], imageSrc: "http://img.b2bpic.net/free-photo/open-dishwasher-bright-modern-kitchen-clean-living_169016-71133.jpg" },
+ { title: "Exterior Siding Upgrade", tags: ["Siding", "Windows"], imageSrc: "http://img.b2bpic.net/free-photo/male-with-red-shirt-making-window-with-industrial-tools_181624-50175.jpg" },
+ { title: "Custom Backyard Deck", tags: ["Decks", "Outdoor"], imageSrc: "http://img.b2bpic.net/free-photo/elegant-modern-armchair-wooden-stand_23-2148238567.jpg" }
+ ]}
+ />
+
+
-
-
+
+
-
-
+ tag="Fast Growth"
+ title="Our Track Record"
+ metrics={[
+ { icon: "Clock", title: "Year of Experience", value: "1" },
+ { icon: "Home", title: "Completed Projects", value: "50+" },
+ { icon: "CheckCircle", title: "Satisfied Clients", value: "100%" }
+ ]}
+ description="We deliver consistent excellence on every job site."
+ />
+
+
-
-
+
+
-
-
+ tag="Reviews"
+ title="What Our Clients Say"
+ testimonials={[
+ { name: "John D.", role: "Homeowner", quote: "Keystone built our dream kitchen within budget.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-as-real-estate-agent_23-2151065041.jpg" },
+ { name: "Sarah W.", role: "Client", quote: "Reliable, clean, and incredible attention to detail.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-old-man-with-glasses-safety-helmet_23-2148269397.jpg" },
+ { name: "Mike R.", role: "Homeowner", quote: "Great communication throughout our remodel.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-couple-cooking_23-2147766890.jpg" },
+ { name: "Linda P.", role: "Homeowner", quote: "Best construction service in Millersburg.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-man-home-office_329181-20664.jpg" },
+ { name: "David L.", role: "Investor", quote: "The team made our house flip profitable and beautiful.", imageSrc: "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15675.jpg" }
+ ]}
+ description="Hear directly from those who trust us with their homes."
+ />
+
+
-
-
+
+
-
-
+ tag="Learn More"
+ title="Frequently Asked Questions"
+ categories={[
+ {
+ name: "General", items: [
+ { question: "What areas do you serve?", answer: "We serve Millersburg, PA and surrounding areas." },
+ { question: "Are you licensed and insured?", answer: "Yes, fully licensed and insured." },
+ { question: "Do you offer free estimates?", answer: "Yes, contact us today to schedule your consultation." },
+ { question: "What kind of projects do you handle?", answer: "We handle everything from kitchen and bath remodels to large-scale flips and mechanical systems." }
+ ]
+ }
+ ]}
+ description="Answers to common questions about our construction process."
+ />
+
+
-
>
);
}