4 Commits

Author SHA1 Message Date
8d34a24530 Merge version_4 into main
Merge version_4 into main
2026-05-23 23:23:14 +00:00
b292449d0d Update src/app/page.tsx 2026-05-23 23:23:08 +00:00
6aac4b8756 Merge version_3 into main
Merge version_3 into main
2026-05-23 23:22:11 +00:00
fbf003898f Merge version_3 into main
Merge version_3 into main
2026-05-23 23:21:45 +00:00

View File

@@ -33,15 +33,15 @@ export default function LandingPage() {
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="HVAC Pro Services"
brandName="All Stars Roofing Inc."
/>
</div>
<div id="hero-home" data-section="hero-home">
<HeroLogoBillboard
logoText="Comfort Solutions"
description="Professional HVAC installation, repair, and climate control for your home."
buttons={[{ text: "Schedule Service", href: "/contact" }, { text: "View Services", href: "/services" }]}
logoText="All Stars Roofing"
description="Premium roofing installation, repair, and exterior services for your home."
buttons={[{ text: "Get a Free Quote", href: "/contact" }, { text: "Our Services", href: "/services" }]}
background={{ variant: "gradient-bars" }}
mediaAnimation="slide-up"
/>
@@ -54,10 +54,10 @@ export default function LandingPage() {
textboxLayout="inline-image"
useInvertedBackground={false}
title="Why Choose Us"
description="Top-tier climate comfort systems backed by expert installation."
description="Top-tier roofing systems backed by expert craftsmanship and reliable support."
features={[
{
title: "Rapid Cooling & Heating", description: "State-of-the-art climate control units installed to perfection.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-doing-his-job-with-belt_23-2149343658.jpg" },
title: "Rapid Roof Restoration", description: "High-quality materials and precision installation for long-lasting protection.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-doing-his-job-with-belt_23-2149343658.jpg" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/exterior-home_74190-4300.jpg" }
}
]}
@@ -66,22 +66,22 @@ export default function LandingPage() {
<div id="services-overview" data-section="services-overview">
<ProductCardTwo
title="Core Climate Services"
description="Keeping your home at the perfect temperature year-round."
title="Our Core Services"
description="Protecting your most valuable investment with industry-leading roofing services."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "h1", brand: "ProSeries", name: "Heating Maintenance", price: "$199", rating: 5, reviewCount: "48", imageSrc: "http://img.b2bpic.net/free-photo/roof-pattern_1203-3266.jpg" },
{ id: "h2", brand: "ProSeries", name: "AC Installation", price: "$2999", rating: 5, reviewCount: "32", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-men-working-roof_23-2149343671.jpg" }
{ id: "r1", brand: "All Stars", name: "Full Roof Replacement", price: "Get Quote", rating: 5, reviewCount: "48", imageSrc: "http://img.b2bpic.net/free-photo/roof-pattern_1203-3266.jpg" },
{ id: "r2", brand: "All Stars", name: "Emergency Repair", price: "Get Quote", rating: 5, reviewCount: "32", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-men-working-roof_23-2149343671.jpg" }
]}
/>
</div>
<div id="process-home" data-section="process-home">
<TextAbout
title="We believe your home should always be your sanctuary."
title="We believe your home should always be safe, dry, and beautiful."
buttons={[{ text: "Contact Our Expert Team", href: "/contact" }]}
useInvertedBackground={false}
/>
@@ -89,10 +89,10 @@ export default function LandingPage() {
<div id="faq" data-section="faq">
<FaqSplitText
sideTitle="Climate Control FAQs"
sideDescription="Answers to your questions regarding HVAC installation and maintenance."
sideTitle="Roofing FAQs"
sideDescription="Answers to your questions regarding roofing installation, materials, and maintenance."
faqs={[
{ id: "f1", title: "Do you service all unit models?", content: "Yes, our certified technicians are trained on all major HVAC brands." }
{ id: "f1", title: "Do you offer free estimates?", content: "Yes, our team provides comprehensive, no-obligation quotes for all residential roofing projects." }
]}
faqsAnimation="slide-up"
useInvertedBackground={false}
@@ -101,11 +101,11 @@ export default function LandingPage() {
<div id="footer-home" data-section="footer-home">
<FooterBaseCard
logoText="HVAC Pro Services"
columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] }]}
logoText="All Stars Roofing Inc."
columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}