Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-19 03:07:50 +00:00

View File

@@ -10,7 +10,7 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { ShieldCheck, Wrench, DollarSign, Phone } from "lucide-react";
import { ShieldCheck, Wrench, DollarSign } from "lucide-react";
export default function HvacPage() {
return (
@@ -94,6 +94,7 @@ export default function HvacPage() {
<div id="faq" data-section="faq">
<FaqBase
title="Common Questions"
description="Everything you need to know about our services and process."
faqs={[{ id: "1", title: "Do you offer 24/7 service?", content: "Yes, we are always here." }]}
faqsAnimation="slide-up"
textboxLayout="default"
@@ -105,7 +106,7 @@ export default function HvacPage() {
<ContactSplitForm
title="Contact Us"
description="Send us a message and we will respond shortly."
inputs={[{ name: "name", type: "text", placeholder: "Your Name" }, { name: "email", type: "email", placeholder: "Email Address" }]}
inputs={[{ name: "name", type: "text", placeholder: "Your Name", required: true }, { name: "email", type: "email", placeholder: "Email Address", required: true }]}
useInvertedBackground={false}
mediaPosition="right"
/>