Update src/app/page.tsx

This commit is contained in:
2026-04-07 14:06:01 +00:00
parent 8e9898b446
commit b559cb290b

View File

@@ -11,7 +11,6 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Phone, CheckCircle, Clock, ShieldCheck } from "lucide-react";
export default function HvacPage() {
return (
@@ -69,6 +68,7 @@ export default function HvacPage() {
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "AC System Install", description: "High-efficiency cooling systems for residential and commercial spaces.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-4.jpg" },
{ title: "Heating & Furnace", description: "Reliable heating repair and installation to keep you warm all year.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-5.jpg" },
@@ -82,6 +82,8 @@ export default function HvacPage() {
title="Service Packages"
description="Transparent pricing for all your HVAC maintenance needs."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
plans={[
{ id: "basic", badge: "Essential", price: "$99", subtitle: "Annual maintenance check", features: ["Filter change", "System diagnostic", "Coil cleaning"] },
{ id: "pro", badge: "Professional", price: "$199", subtitle: "Comprehensive service", features: ["Everything in Essential", "Duct cleaning", "Parts discount"] }
@@ -92,9 +94,11 @@ export default function HvacPage() {
<div id="testimonials">
<TestimonialCardThirteen
title="Client Success Stories"
description="What our happy customers say about our services."
showRating={true}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Sarah J.", handle: "@sarahj", testimonial: "Absolutely the best HVAC company in town.", rating: 5 },
{ id: "2", name: "Mark D.", handle: "@markd", testimonial: "Professional, polite, and very knowledgeable team.", rating: 5 }
@@ -104,9 +108,9 @@ export default function HvacPage() {
<div id="faq">
<FaqSplitText
title="Common Questions"
sideTitle="Need Help?"
faqsAnimation="slide-up"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "Do you offer 24/7 service?", content: "Yes, we provide emergency support 24/7." },
{ id: "2", title: "Are your technicians licensed?", content: "Yes, all our professionals are fully certified and insured." }
@@ -120,6 +124,7 @@ export default function HvacPage() {
title="Schedule a Service"
description="Reach out to our experts and get your HVAC system in top shape today."
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
/>
</div>