Files
3594d1ec-4742-403d-ac8a-0a1…/src/app/page.tsx
2026-03-17 19:53:34 +00:00

291 lines
15 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import Link from "next/link";
import { Zap, Award, Star, HelpCircle, Phone } from "lucide-react";
export default function HomePage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumSizeLargeTitles"
background="circleGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="ClimaCom"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{
text: "Call Now: 02 943 1134", href: "tel:+359294431134"}}
/>
</div>
{/* Hero Section */}
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="ClimaCom - Professional HVAC Services"
description="Professional Air Conditioning & HVAC Services in Sofia. Installation, Repair & Maintenance by Trusted Local Experts. Fast Response Times. 4.3★ Rated."
buttons={[
{
text: "Call Now: 02 943 1134", href: "tel:+359294431134"},
{
text: "Request Free Quote", href: "/contact"},
]}
slides={[
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-male-electrician-installing-holder-ceiling-light_23-2148087646.jpg", imageAlt: "HVAC Technician installing air conditioner"},
{
imageSrc: "http://img.b2bpic.net/free-photo/serviceman-arriving-help-apprentice_482257-85127.jpg", imageAlt: "Professional AC unit installation"},
{
imageSrc: "http://img.b2bpic.net/free-photo/isolated-studio-shot-untidy-female-male-carpenters-look-with-bugged-eyes-jaw-dropped-out_273609-8775.jpg", imageAlt: "ClimaCom professional service team"},
]}
autoplayDelay={4000}
showDimOverlay={false}
/>
</div>
{/* Services Section */}
<div id="services" data-section="services">
<FeatureCardTwelve
title="Our HVAC Services"
description="Comprehensive air conditioning and heating solutions for residential and commercial properties in Sofia"
tag="Professional Services"
tagIcon={Zap}
features={[
{
id: "installation", label: "Installation", title: "Air Conditioner Installation", items: [
"Expert installation of premium AC units", "Professional ductwork and placement", "Energy-efficient system selection", "Same-day service availability"],
buttons: [
{
text: "Learn More", href: "/services#installation"},
],
},
{
id: "repair", label: "Repair", title: "AC Repair & Emergency Service", items: [
"Fast emergency response (24/7 availability)", "Diagnosis and troubleshooting", "Quick fixes and component replacement", "Warranty on all repairs"],
buttons: [
{
text: "Book Service", href: "/services#repair"},
],
},
{
id: "maintenance", label: "Maintenance", title: "HVAC Maintenance & Servicing", items: [
"Regular system cleaning and inspection", "Filter replacement and optimization", "Preventative maintenance plans", "Extend equipment lifespan"],
buttons: [
{
text: "Schedule Maintenance", href: "/services#maintenance"},
],
},
{
id: "heating", label: "Heating", title: "Heating Systems & Solutions", items: [
"Professional heating system installation", "Heat pump and boiler services", "Year-round comfort solutions", "Energy-efficient heating options"],
buttons: [
{
text: "Get More Info", href: "/services#heating"},
],
},
]}
animationType="opacity"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
{/* Why Choose ClimaCom Section */}
<div id="why-choose" data-section="why-choose">
<InlineImageSplitTextAbout
heading={[
{
type: "text", content: "Why Choose ClimaCom?"},
{
type: "image", src: "http://img.b2bpic.net/free-vector/collection-new-year-badges-2018_23-2147701497.jpg", alt: "4.3 star rating badge"},
]}
buttons={[
{
text: "Call Now", href: "tel:+359294431134"},
{
text: "Get Free Quote", href: "/contact"},
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
{/* Social Proof Section */}
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Trusted by Sofia's Top Brands"
description="ClimaCom services and maintains AC systems from leading manufacturers"
names={[
"Daikin", "Mitsubishi Electric", "LG", "Samsung", "Carrier", "Trane", "Fujitsu"]}
logos={[
"http://img.b2bpic.net/free-vector/gradient-abstract-logo_52683-8561.jpg", "http://img.b2bpic.net/free-vector/realistic-winter-season-logo-template_23-2149821285.jpg", "http://img.b2bpic.net/free-vector/hand-drawn-minimalist-sun-ocean-logo-template_742173-17682.jpg", "http://img.b2bpic.net/free-vector/gradient-abstract-logo-template_23-2148158913.jpg", "http://img.b2bpic.net/free-vector/logo-with-curly-arrow_1043-146.jpg", "http://img.b2bpic.net/free-vector/flat-usa-labor-day-label-collection_23-2148225167.jpg", "http://img.b2bpic.net/free-vector/flat-laptop-logo-template_23-2149014685.jpg"]}
tag="Partner Brands"
tagIcon={Award}
textboxLayout="default"
useInvertedBackground={false}
showCard={true}
speed={35}
/>
</div>
{/* Testimonials Section */}
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
cardTitle="What Our Customers Say"
cardTag="4.3★ Rated - 80+ Reviews"
cardTagIcon={Star}
testimonials={[
{
id: "1", name: "Mariya Aleksandrova", imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-thumb-up-grey-t-shirt-looking-happy-front-view_176474-15608.jpg", imageAlt: "Mariya Aleksandrova - satisfied customer"},
{
id: "2", name: "Ivan Petrov", imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-young-businessman-with-his-arms-crossed_23-2148176206.jpg", imageAlt: "Ivan Petrov - satisfied customer"},
{
id: "3", name: "Svetla Georgieva", imageSrc: "http://img.b2bpic.net/free-photo/shot-beautiful-young-businesswoman-wearing-blue-chiffon-shirt-while-standing-with-folded-arms-gray-marble-wall_158595-6771.jpg", imageAlt: "Svetla Georgieva - satisfied customer"},
{
id: "4", name: "Dimitar Nikolov", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man_1187-1055.jpg", imageAlt: "Dimitar Nikolov - satisfied customer"},
]}
cardAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
{/* Metrics Section */}
<div id="metrics" data-section="metrics">
<MetricCardEleven
title="Trusted by Sofia"
description="ClimaCom's track record of excellence in professional HVAC services"
metrics={[
{
id: "reviews", value: "80+", title: "Customer Reviews", description: "Real testimonials from satisfied clients across Sofia"},
{
id: "rating", value: "4.3★", title: "Average Rating", description: "Consistently high customer satisfaction scores"},
{
id: "response", value: "Same Day", title: "Service Response", description: "Fast emergency and routine service availability"},
{
id: "experience", value: "Licensed", title: "Professional", description: "Certified HVAC contractors serving Sofia professionally"},
]}
animationType="opacity"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
{/* FAQ Section */}
<div id="faq" data-section="faq">
<FaqSplitMedia
title="Frequently Asked Questions"
description="Get answers to common questions about our HVAC services, pricing, and availability"
tag="Support"
tagIcon={HelpCircle}
faqs={[
{
id: "1", title: "How much does AC installation cost?", content: "AC installation costs vary depending on your unit size, type, and location in Sofia. We provide free quotes and transparent pricing. Call 02 943 1134 for an estimate tailored to your needs."},
{
id: "2", title: "Do you offer emergency repair service?", content: "Yes! We provide 24/7 emergency AC repair service. Our technicians can respond quickly to urgent breakdowns. Call us immediately for fast emergency support."},
{
id: "3", title: "What areas of Sofia do you serve?", content: "We service all neighborhoods across Sofia, including g.k. Suhata Reka and surrounding areas. Our central location allows us to provide quick service citywide."},
{
id: "4", title: "Do you provide maintenance plans?", content: "Absolutely! Regular maintenance extends equipment lifespan and improves efficiency. We offer flexible maintenance packages tailored to residential and commercial needs."},
{
id: "5", title: "Are your technicians licensed and insured?", content: "Yes, all ClimaCom technicians are fully licensed HVAC professionals and fully insured. We guarantee quality workmanship on every job."},
{
id: "6", title: "What warranty do you offer?", content: "We provide warranties on all installations and repairs. Ask our team about extended warranty options for complete peace of mind."},
]}
imageSrc="http://img.b2bpic.net/free-photo/expert-using-pressure-measurement-device_482257-91080.jpg?_wi=1"
mediaAnimation="slide-up"
mediaPosition="right"
textboxLayout="default"
faqsAnimation="slide-up"
useInvertedBackground={false}
animationType="smooth"
showCard={true}
/>
</div>
{/* Contact Section */}
<div id="contact" data-section="contact">
<ContactSplit
tag="Get In Touch"
title="Need AC Installation or Repair Today?"
description="Contact ClimaCom for fast, professional HVAC service. Call now or submit a quote request and we'll respond within hours."
tagIcon={Phone}
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-auto-repairman-looking-camera-while-his-customers-are-standing-background_637285-7790.jpg?_wi=1"
mediaAnimation="opacity"
mediaPosition="right"
inputPlaceholder="Enter your email or phone number"
buttonText="Request Free Quote"
termsText="By submitting, you agree to our service terms and privacy policy."
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Services", items: [
{ label: "AC Installation", href: "/services#installation" },
{ label: "AC Repair", href: "/services#repair" },
{ label: "Maintenance", href: "/services#maintenance" },
{ label: "Heating Solutions", href: "/services#heating" },
],
},
{
title: "Contact", items: [
{ label: "Phone: 02 943 1134", href: "tel:+359294431134" },
{
label: "g.k. Suhata Reka, bul. Vladimir Vazov 52, 1517 Sofia", href: "https://maps.google.com/?q=ClimaCom+Sofia"},
{ label: "Mon-Fri: 8:30 AM - 5:30 PM", href: "#" },
{ label: "Sat: 9:00 AM - 4:00 PM", href: "#" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
],
},
]}
bottomLeftText="© 2024 ClimaCom Ltd. All rights reserved."
bottomRightText="Professional HVAC Services • Sofia, Bulgaria"
/>
</div>
</ThemeProvider>
);
}