Merge version_1 into main #3

Merged
bender merged 2 commits from version_1 into main 2026-03-09 15:02:16 +00:00
2 changed files with 179 additions and 445 deletions

View File

@@ -3,17 +3,54 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import TextAbout from "@/components/sections/about/TextAbout";
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import Link from "next/link";
import { Zap, Star, Users, Wrench, MessageCircle } from "lucide-react";
import { MessageCircle, Phone } from "lucide-react";
const ContactPage = () => {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "About Us", href: "/about" },
{ label: "Reviews", href: "/reviews" },
],
},
{
title: "Services", items: [
{ label: "AC Repair", href: "#" },
{ label: "AC Installation", href: "#" },
{ label: "AC Cleaning", href: "#" },
{ label: "Gas Refilling", href: "#" },
],
},
{
title: "Contact", items: [
{ label: "Call: +91-XXXXXXXXXX", href: "tel:+919876543210" },
{ label: "WhatsApp", href: "https://wa.me/919876543210" },
{ label: "Email: info@anhvac.com", href: "mailto:info@anhvac.com" },
{ label: "Book Service", href: "#booking" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms & Conditions", href: "#" },
{ label: "Disclaimer", href: "#" },
],
},
];
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -21,7 +58,7 @@ export default function ContactPage() {
borderRadius="soft"
contentWidth="small"
sizing="medium"
background="grid"
background="circleGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="solid"
@@ -30,264 +67,53 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="AN HVAC"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
]}
navItems={navItems.map((item) => ({
name: item.name,
id: item.id,
}))}
button={{
text: "Book Service",
href: "#booking",
}}
text: "Book Service", href: "#booking"}}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
tag="Professional AC Services"
tagIcon={Zap}
title="Professional AC Repair Services in Guwahati"
description="Fast, reliable, and affordable HVAC services by experienced technicians. Same-day repairs, expert installations, and comprehensive maintenance for homes and businesses."
title="Contact AN HVAC Service Center"
description="Get in touch with our team for all your AC repair, installation, and maintenance needs in Guwahati"
background={{
variant: "grid",
}}
variant: "animated-grid"}}
buttons={[
{
text: "Book Service Now",
href: "#booking",
},
text: "Chat on WhatsApp", href: "https://wa.me/919876543210"},
{
text: "Call Now",
href: "tel:+919876543210",
},
text: "Call Us Now", href: "tel:+919876543210"},
]}
imageSrc="http://img.b2bpic.net/free-photo/mechanic-installing-spring-wire_1170-1343.jpg?_wi=2"
imageAlt="Professional AC technician"
/>
</div>
<div id="services" data-section="services">
<FeatureCardMedia
title="Our HVAC Services"
description="Comprehensive air conditioning and heating solutions tailored to your needs"
tag="Services"
features={[
{
id: "1",
title: "AC Repair",
description: "Quick diagnosis and repair of broken AC units with genuine parts and warranty",
tag: "Expert Repair",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-holding-manometers-close-up_482257-90625.jpg?_wi=4",
imageAlt: "AC repair service",
},
{
id: "2",
title: "AC Installation",
description: "Professional installation of split and window AC units with complete setup",
tag: "New Installation",
imageSrc: "http://img.b2bpic.net/free-photo/repairmen-taking-apart-hvac-system_482257-92028.jpg?_wi=4",
imageAlt: "AC installation",
},
{
id: "3",
title: "AC Cleaning & Maintenance",
description: "Hydrojet cleaning, filter replacement, and preventive maintenance services",
tag: "Deep Clean",
imageSrc: "http://img.b2bpic.net/free-photo/worker-works-air-conditioner_482257-90907.jpg?_wi=4",
imageAlt: "AC cleaning service",
},
{
id: "4",
title: "Gas Refilling",
description: "AC gas charging and pressure checking to restore cooling efficiency",
tag: "Gas Service",
imageSrc: "http://img.b2bpic.net/free-photo/technician-sweeping-debris-hvac-unit_482257-92789.jpg?_wi=3",
imageAlt: "Gas refilling service",
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="why-choose-us" data-section="why-choose-us">
<MetricCardThree
title="Why Choose AN HVAC"
description="Trusted by hundreds of families and businesses in Guwahati with proven expertise"
metrics={[
{
id: "1",
icon: Star,
title: "5.0 Rating",
value: "70+ Reviews",
},
{
id: "2",
icon: Users,
title: "Expert Team",
value: "Certified Technicians",
},
{
id: "3",
icon: Zap,
title: "Same-Day Service",
value: "Emergency Available",
},
{
id: "4",
icon: Wrench,
title: "Advanced Tools",
value: "Latest Equipment",
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="how-it-works" data-section="how-it-works">
<TextAbout
tag="Simple Process"
title="Book Service → Technician Visits → Problem Diagnosis → Expert Repair & Maintenance"
useInvertedBackground={false}
buttons={[
{
text: "Start Booking",
href: "#booking",
},
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
tag="Reviews"
title="What Our Customers Say"
description="Real feedback from satisfied families and businesses across Guwahati"
testimonials={[
{
id: "1",
name: "Priya Sharma",
role: "Homeowner",
company: "Adabari",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-pretty-woman-showing-ok-sign_1262-2368.jpg?_wi=3",
imageAlt: "Priya Sharma",
},
{
id: "2",
name: "Rajesh Kumar",
role: "Office Manager",
company: "Dispur Business Center",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-smiling-with-hands-pockets_1187-1106.jpg?_wi=3",
imageAlt: "Rajesh Kumar",
},
{
id: "3",
name: "Neha Gupta",
role: "Shop Owner",
company: "Jalukbari Retail",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/positive-businesswoman-work_1098-3861.jpg?_wi=3",
imageAlt: "Neha Gupta",
},
{
id: "4",
name: "Arjun Singh",
role: "Property Manager",
company: "Beltola Apartments",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-aside-smiling-confident-with-arms-crossed-chest_141793-55366.jpg?_wi=3",
imageAlt: "Arjun Singh",
},
{
id: "5",
name: "Meera Devi",
role: "Homeowner",
company: "Noonmati",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-work-with-copy-space_23-2148826459.jpg?_wi=3",
imageAlt: "Meera Devi",
},
{
id: "6",
name: "Vikram Patel",
role: "Business Owner",
company: "Khanapara IT Firm",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-photo-bearded-guy-smiling-gesturing-with-ok-sign-expressing-good-choice-being-isolated-graphite_171337-455.jpg?_wi=3",
imageAlt: "Vikram Patel",
},
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="service-areas" data-section="service-areas">
<SocialProofOne
tag="Coverage"
title="Service Areas in Guwahati"
description="We serve all major areas in Guwahati with fast response times"
names={[
"Adabari",
"Maligaon",
"Jalukbari",
"Beltola",
"Dispur",
"Noonmati",
"Khanapara",
"Entire Guwahati",
]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}
showCard={true}
imageSrc="http://img.b2bpic.net/free-photo/mechanic-installing-spring-wire_1170-1343.jpg"
imageAlt="contact us for AC services"
/>
</div>
<div id="booking" data-section="booking">
<ContactFaq
faqs={[
{
id: "1", title: "How quickly can you respond?", content:
"We offer same-day service for most AC repairs and can usually arrive within 2-4 hours of booking. Emergency services available 24/7."},
{
id: "2", title: "What areas do you serve?", content:
"We provide HVAC services across Guwahati including Adabari, Maligaon, Jalukbari, Beltola, Dispur, Noonmati, and Khanapara. Contact us for your specific location."},
{
id: "3", title: "Do you provide warranty on repairs?", content:
"Yes! We provide 6-12 months warranty on all repairs depending on the service type, plus warranty on genuine replacement parts."},
{
id: "4", title: "What are your service charges?", content:
"We offer competitive pricing with transparent quotes. Service calls start at ₹299 with actual repair costs depending on the issue. No hidden charges."},
]}
ctaTitle="Book Your AC Service Now"
ctaDescription="Contact us via WhatsApp or phone for instant booking and quick service scheduling"
ctaButton={{
text: "Chat on WhatsApp",
href: "https://wa.me/919876543210",
}}
text: "Chat on WhatsApp", href: "https://wa.me/919876543210"}}
ctaIcon={MessageCircle}
faqs={[
{
id: "1",
title: "How quickly can you respond?",
content:
"We offer same-day service for most AC repairs and can usually arrive within 2-4 hours of booking. Emergency services available 24/7.",
},
{
id: "2",
title: "What areas do you serve?",
content:
"We provide HVAC services across Guwahati including Adabari, Maligaon, Jalukbari, Beltola, Dispur, Noonmati, and Khanapara. Contact us for your specific location.",
},
{
id: "3",
title: "Do you provide warranty on repairs?",
content:
"Yes! We provide 6-12 months warranty on all repairs depending on the service type, plus warranty on genuine replacement parts.",
},
{
id: "4",
title: "What are your service charges?",
content:
"We offer competitive pricing with transparent quotes. Service calls start at ₹299 with actual repair costs depending on the issue. No hidden charges.",
},
]}
useInvertedBackground={false}
animationType="slide-up"
accordionAnimationType="smooth"
@@ -297,92 +123,13 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Quick Links",
items: [
{
label: "Home",
href: "/",
},
{
label: "Services",
href: "/services",
},
{
label: "About Us",
href: "/about",
},
{
label: "Reviews",
href: "/reviews",
},
],
},
{
title: "Services",
items: [
{
label: "AC Repair",
href: "#",
},
{
label: "AC Installation",
href: "#",
},
{
label: "AC Cleaning",
href: "#",
},
{
label: "Gas Refilling",
href: "#",
},
],
},
{
title: "Contact",
items: [
{
label: "Call: +91-XXXXXXXXXX",
href: "tel:+919876543210",
},
{
label: "WhatsApp",
href: "https://wa.me/919876543210",
},
{
label: "Email: info@anhvac.com",
href: "mailto:info@anhvac.com",
},
{
label: "Book Service",
href: "#booking",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms & Conditions",
href: "#",
},
{
label: "Disclaimer",
href: "#",
},
],
},
]}
columns={footerColumns}
bottomLeftText="© 2025 AN HVAC Service Center. All rights reserved. Guwahati, Assam"
bottomRightText="Professional HVAC Services | Same-Day Repair Available"
/>
</div>
</ThemeProvider>
);
}
};
export default ContactPage;

View File

@@ -1,6 +1,5 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
@@ -11,9 +10,10 @@ import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCar
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import Link from "next/link";
import { Zap, Star, Users, Wrench, MessageCircle } from "lucide-react";
export default function HomePage() {
const HomePage = () => {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
@@ -24,8 +24,7 @@ export default function HomePage() {
const footerColumns = [
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "About Us", href: "/about" },
@@ -33,8 +32,7 @@ export default function HomePage() {
],
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "AC Repair", href: "#" },
{ label: "AC Installation", href: "#" },
{ label: "AC Cleaning", href: "#" },
@@ -42,8 +40,7 @@ export default function HomePage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Call: +91-XXXXXXXXXX", href: "tel:+919876543210" },
{ label: "WhatsApp", href: "https://wa.me/919876543210" },
{ label: "Email: info@anhvac.com", href: "mailto:info@anhvac.com" },
@@ -51,8 +48,7 @@ export default function HomePage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms & Conditions", href: "#" },
{ label: "Disclaimer", href: "#" },
@@ -65,22 +61,23 @@ export default function HomePage() {
defaultButtonVariant="elastic-effect"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="small"
contentWidth="medium"
sizing="medium"
background="grid"
background="circleGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="solid"
headingFontWeight="light"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="AN HVAC"
navItems={navItems}
navItems={navItems.map((item) => ({
name: item.name,
id: item.id,
}))}
button={{
text: "Book Service",
href: "#booking",
}}
text: "Book Service", href: "#booking"}}
/>
</div>
@@ -90,13 +87,16 @@ export default function HomePage() {
tagIcon={Zap}
title="Professional AC Repair Services in Guwahati"
description="Fast, reliable, and affordable HVAC services by experienced technicians. Same-day repairs, expert installations, and comprehensive maintenance for homes and businesses."
background={{ variant: "grid" }}
background={{
variant: "animated-grid"}}
buttons={[
{ text: "Book Service Now", href: "#booking" },
{ text: "Call Now", href: "tel:+919876543210" },
{
text: "Book Service Now", href: "#booking"},
{
text: "Call Now", href: "tel:+919876543210"},
]}
imageSrc="http://img.b2bpic.net/free-photo/mechanic-installing-spring-wire_1170-1343.jpg?_wi=1"
imageAlt="Professional AC technician"
imageSrc="http://img.b2bpic.net/free-photo/mechanic-installing-spring-wire_1170-1343.jpg"
imageAlt="professional AC technician working"
/>
</div>
@@ -107,37 +107,21 @@ export default function HomePage() {
tag="Services"
features={[
{
id: "1",
title: "AC Repair",
description: "Quick diagnosis and repair of broken AC units with genuine parts and warranty",
tag: "Expert Repair",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-holding-manometers-close-up_482257-90625.jpg?_wi=1",
imageAlt: "AC repair service",
},
id: "1", title: "AC Repair", description:
"Quick diagnosis and repair of broken AC units with genuine parts and warranty", tag: "Expert Repair", imageSrc:
"http://img.b2bpic.net/free-photo/mechanic-holding-manometers-close-up_482257-90625.jpg", imageAlt: "AC repair service technician"},
{
id: "2",
title: "AC Installation",
description: "Professional installation of split and window AC units with complete setup",
tag: "New Installation",
imageSrc: "http://img.b2bpic.net/free-photo/repairmen-taking-apart-hvac-system_482257-92028.jpg?_wi=1",
imageAlt: "AC installation",
},
id: "2", title: "AC Installation", description:
"Professional installation of split and window AC units with complete setup", tag: "New Installation", imageSrc:
"http://img.b2bpic.net/free-photo/repairmen-taking-apart-hvac-system_482257-92028.jpg", imageAlt: "AC unit installation process"},
{
id: "3",
title: "AC Cleaning & Maintenance",
description: "Hydrojet cleaning, filter replacement, and preventive maintenance services",
tag: "Deep Clean",
imageSrc: "http://img.b2bpic.net/free-photo/worker-works-air-conditioner_482257-90907.jpg?_wi=1",
imageAlt: "AC cleaning service",
},
id: "3", title: "AC Cleaning & Maintenance", description:
"Hydrojet cleaning, filter replacement, and preventive maintenance services", tag: "Deep Clean", imageSrc:
"http://img.b2bpic.net/free-photo/worker-works-air-conditioner_482257-90907.jpg", imageAlt: "AC hydrojet cleaning process"},
{
id: "4",
title: "Gas Refilling",
description: "AC gas charging and pressure checking to restore cooling efficiency",
tag: "Gas Service",
imageSrc: "http://img.b2bpic.net/free-photo/technician-sweeping-debris-hvac-unit_482257-92789.jpg?_wi=1",
imageAlt: "Gas refilling service",
},
id: "4", title: "Gas Refilling", description:
"AC gas charging and pressure checking to restore cooling efficiency", tag: "Gas Service", imageSrc:
"http://img.b2bpic.net/free-photo/technician-sweeping-debris-hvac-unit_482257-92789.jpg", imageAlt: "AC refrigerant gas refilling"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -147,14 +131,22 @@ export default function HomePage() {
<div id="why-choose-us" data-section="why-choose-us">
<MetricCardThree
metrics={[
{
id: "1", icon: Star,
title: "5.0 Rating", value: "70+ Reviews"},
{
id: "2", icon: Users,
title: "Expert Team", value: "Certified Technicians"},
{
id: "3", icon: Zap,
title: "Same-Day Service", value: "Emergency Available"},
{
id: "4", icon: Wrench,
title: "Advanced Tools", value: "Latest Equipment"},
]}
title="Why Choose AN HVAC"
description="Trusted by hundreds of families and businesses in Guwahati with proven expertise"
metrics={[
{ id: "1", icon: Star, title: "5.0 Rating", value: "70+ Reviews" },
{ id: "2", icon: Users, title: "Expert Team", value: "Certified Technicians" },
{ id: "3", icon: Zap, title: "Same-Day Service", value: "Emergency Available" },
{ id: "4", icon: Wrench, title: "Advanced Tools", value: "Latest Equipment" },
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
@@ -166,7 +158,10 @@ export default function HomePage() {
tag="Simple Process"
title="Book Service → Technician Visits → Problem Diagnosis → Expert Repair & Maintenance"
useInvertedBackground={false}
buttons={[{ text: "Start Booking", href: "#booking" }]}
buttons={[
{
text: "Start Booking", href: "#booking"},
]}
/>
</div>
@@ -177,59 +172,29 @@ export default function HomePage() {
description="Real feedback from satisfied families and businesses across Guwahati"
testimonials={[
{
id: "1",
name: "Priya Sharma",
role: "Homeowner",
company: "Adabari",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-pretty-woman-showing-ok-sign_1262-2368.jpg?_wi=1",
imageAlt: "Priya Sharma",
},
id: "1", name: "Priya Sharma", role: "Homeowner", company: "Adabari", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/closeup-smiling-pretty-woman-showing-ok-sign_1262-2368.jpg", imageAlt: "satisfied customer portrait happy"},
{
id: "2",
name: "Rajesh Kumar",
role: "Office Manager",
company: "Dispur Business Center",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-smiling-with-hands-pockets_1187-1106.jpg?_wi=1",
imageAlt: "Rajesh Kumar",
},
id: "2", name: "Rajesh Kumar", role: "Office Manager", company: "Dispur Business Center", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/woman-smiling-with-hands-pockets_1187-1106.jpg", imageAlt: "professional man portrait headshot"},
{
id: "3",
name: "Neha Gupta",
role: "Shop Owner",
company: "Jalukbari Retail",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/positive-businesswoman-work_1098-3861.jpg?_wi=1",
imageAlt: "Neha Gupta",
},
id: "3", name: "Neha Gupta", role: "Shop Owner", company: "Jalukbari Retail", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/positive-businesswoman-work_1098-3861.jpg", imageAlt: "professional woman portrait smile"},
{
id: "4",
name: "Arjun Singh",
role: "Property Manager",
company: "Beltola Apartments",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-aside-smiling-confident-with-arms-crossed-chest_141793-55366.jpg?_wi=1",
imageAlt: "Arjun Singh",
},
id: "4", name: "Arjun Singh", role: "Property Manager", company: "Beltola Apartments", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-aside-smiling-confident-with-arms-crossed-chest_141793-55366.jpg", imageAlt: "professional man smiling portrait"},
{
id: "5",
name: "Meera Devi",
role: "Homeowner",
company: "Noonmati",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-work-with-copy-space_23-2148826459.jpg?_wi=1",
imageAlt: "Meera Devi",
},
id: "5", name: "Meera Devi", role: "Homeowner", company: "Noonmati", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-woman-work-with-copy-space_23-2148826459.jpg", imageAlt: "professional woman confident portrait"},
{
id: "6",
name: "Vikram Patel",
role: "Business Owner",
company: "Khanapara IT Firm",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-photo-bearded-guy-smiling-gesturing-with-ok-sign-expressing-good-choice-being-isolated-graphite_171337-455.jpg?_wi=1",
imageAlt: "Vikram Patel",
},
id: "6", name: "Vikram Patel", role: "Business Owner", company: "Khanapara IT Firm", rating: 5,
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-photo-bearded-guy-smiling-gesturing-with-ok-sign-expressing-good-choice-being-isolated-graphite_171337-455.jpg", imageAlt: "professional man portrait business"},
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
@@ -243,16 +208,8 @@ export default function HomePage() {
tag="Coverage"
title="Service Areas in Guwahati"
description="We serve all major areas in Guwahati with fast response times"
names={[
"Adabari",
"Maligaon",
"Jalukbari",
"Beltola",
"Dispur",
"Noonmati",
"Khanapara",
"Entire Guwahati",
]}
names=[
"Adabari", "Maligaon", "Jalukbari", "Beltola", "Dispur", "Noonmati", "Khanapara", "Entire Guwahati"]
textboxLayout="default"
useInvertedBackground={false}
speed={40}
@@ -260,6 +217,34 @@ export default function HomePage() {
/>
</div>
<div id="booking" data-section="booking">
<ContactFaq
faqs={[
{
id: "1", title: "How quickly can you respond?", content:
"We offer same-day service for most AC repairs and can usually arrive within 2-4 hours of booking. Emergency services available 24/7."},
{
id: "2", title: "What areas do you serve?", content:
"We provide HVAC services across Guwahati including Adabari, Maligaon, Jalukbari, Beltola, Dispur, Noonmati, and Khanapara. Contact us for your specific location."},
{
id: "3", title: "Do you provide warranty on repairs?", content:
"Yes! We provide 6-12 months warranty on all repairs depending on the service type, plus warranty on genuine replacement parts."},
{
id: "4", title: "What are your service charges?", content:
"We offer competitive pricing with transparent quotes. Service calls start at ₹299 with actual repair costs depending on the issue. No hidden charges."},
]}
ctaTitle="Book Your AC Service Now"
ctaDescription="Contact us via WhatsApp or phone for instant booking and quick service scheduling"
ctaButton={{
text: "Chat on WhatsApp", href: "https://wa.me/919876543210"}}
ctaIcon={MessageCircle}
useInvertedBackground={false}
animationType="slide-up"
accordionAnimationType="smooth"
showCard={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
@@ -269,4 +254,6 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
};
export default HomePage;