10 Commits

Author SHA1 Message Date
24cc2271b7 Switch to version 4: modified src/app/page.tsx 2026-05-23 03:16:15 +00:00
6c07fadbc2 Switch to version 3: modified src/app/page.tsx 2026-05-23 03:16:10 +00:00
b09a52077a Merge version_4 into main
Merge version_4 into main
2026-05-22 03:02:07 +00:00
3ad1fca621 Update src/app/page.tsx 2026-05-22 03:02:04 +00:00
3d7d383552 Merge version_4 into main
Merge version_4 into main
2026-05-22 03:01:39 +00:00
e188cb418c Update src/app/page.tsx 2026-05-22 03:01:36 +00:00
665bf620f7 Merge version_3 into main
Merge version_3 into main
2026-05-22 02:59:26 +00:00
077de8df92 Update src/app/page.tsx 2026-05-22 02:59:20 +00:00
27a798f3c8 Merge version_2 into main
Merge version_2 into main
2026-05-22 02:56:02 +00:00
b164a9a3bc Merge version_2 into main
Merge version_2 into main
2026-05-22 02:55:34 +00:00

View File

@@ -12,6 +12,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import ContactCenter from '@/components/sections/contact/ContactCenter';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -36,11 +37,23 @@ export default function LandingPage() {
{ name: "Systems", id: "#products" }, { name: "Systems", id: "#products" },
{ name: "Reviews", id: "#testimonials" }, { name: "Reviews", id: "#testimonials" },
]} ]}
button={{ text: "Request Estimate", href: "#contact" }} button={{ text: "Call +12486813089", href: "tel:+12486813089" }}
brandName="Allens Service" brandName="Allens Service"
/> />
</div> </div>
<div id="contact-urgent" data-section="contact">
<ContactCenter
tag="Urgent Support"
title="Immediate Consultation"
description="Our engineering team is ready to assist you right now. Call us at +12486813089 for immediate priority service."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
buttonText="Call Now"
onSubmit={(email) => window.location.href = 'tel:+12486813089'}
/>
</div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSignup <HeroSignup
background={{ variant: "downward-rays-animated" }} background={{ variant: "downward-rays-animated" }}
@@ -126,7 +139,9 @@ export default function LandingPage() {
showRating={true} showRating={true}
testimonials={[ testimonials={[
{ id: "t1", name: "Alexander Thorne", handle: "Luxury Real Estate Developer", testimonial: "Their technical precision is simply unmatched. True perfectionists.", rating: 5 }, { id: "t1", name: "Alexander Thorne", handle: "Luxury Real Estate Developer", testimonial: "Their technical precision is simply unmatched. True perfectionists.", rating: 5 },
{ id: "t2", name: "Eleanor Vance", handle: "Homeowner", testimonial: "Allens Service transformed our climate comfort. Absolutely invisible and perfectly efficient.", rating: 5 } { id: "t2", name: "Eleanor Vance", handle: "Homeowner", testimonial: "Allens Service transformed our climate comfort. Absolutely invisible and perfectly efficient.", rating: 5 },
{ id: "t3", name: "Patt Hann", handle: "Client", testimonial: "The responsiveness is incredible. They clearly prioritize high standards of care.", rating: 5 },
{ id: "t4", name: "Kailah Schumacher", handle: "Client", testimonial: "Truly remarkable service that understands the nuances of luxury home systems.", rating: 5 }
]} ]}
/> />
</div> </div>
@@ -149,7 +164,7 @@ export default function LandingPage() {
<ContactSplitForm <ContactSplitForm
useInvertedBackground={false} useInvertedBackground={false}
title="Begin Your Consultation" title="Begin Your Consultation"
description="Request a private consultation to discuss the needs of your estate." description="Request a private consultation to discuss the needs of your estate. Or call us directly at +12486813089."
inputs={[ inputs={[
{ name: "name", type: "text", placeholder: "Full Name" }, { name: "name", type: "text", placeholder: "Full Name" },
{ name: "email", type: "email", placeholder: "Email Address" } { name: "email", type: "email", placeholder: "Email Address" }
@@ -167,4 +182,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }