Merge version_2 into main #2

Merged
bender merged 4 commits from version_2 into main 2026-03-17 19:53:39 +00:00
4 changed files with 434 additions and 501 deletions

View File

@@ -1,61 +1,17 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import TextAbout from "@/components/sections/about/TextAbout";
import TeamCardTen from "@/components/sections/team/TeamCardTen";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Award, Users, Trophy, Star, CheckCircle, Zap } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
];
const footerColumns = [
{
title: "Quick Links",
items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Services",
items: [
{ label: "AC Installation", href: "/services" },
{ label: "AC Repair", href: "/services" },
{ label: "Maintenance", href: "/services" },
{ label: "Heating Solutions", href: "/services" },
],
},
{
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: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -69,85 +25,208 @@ export default function AboutPage() {
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="ClimaCom"
navItems={[
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
]}
button={{
text: "Call Now: 02 943 1134",
href: "tel:+359294431134",
}}
animateOnLoad={true}
text: "Call Now: 02 943 1134", href: "tel:+359294431134"}}
/>
</div>
<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 professional quality",
},
]}
{/* Hero Section */}
<div id="hero" data-section="hero">
<HeroOverlay
title="About ClimaCom"
description="Leading HVAC service provider in Sofia with a commitment to professional excellence, customer satisfaction, and reliable climate control solutions since our founding."
tag="About Us"
tagIcon={Award}
buttons={[
{
text: "Call Now",
href: "tel:+359294431134",
},
text: "Learn More", href: "#story"},
{
text: "Get Free Quote",
href: "/contact",
},
text: "Contact Us", href: "#contact"},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/smiling-team-engineers-with-tools_1134-36.jpg"
imageAlt="ClimaCom professional team"
showDimOverlay={true}
showBlur={true}
ariaLabel="About us hero section"
/>
</div>
{/* Company Story Section */}
<div id="story" data-section="story">
<TextAbout
tag="Our Story"
tagIcon={Award}
title="Delivering Excellence in HVAC Services to Sofia Since Our Launch. We focus on building long-term relationships with clients through reliable, professional, and high-quality climate control solutions."
buttons={[
{
text: "Get Free Quote", href: "#contact"},
{
text: "Call: 02 943 1134", href: "tel:+359294431134"},
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
ariaLabel="Company story section"
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardEleven
title="Trusted by Sofia"
description="ClimaCom's track record of excellence in professional HVAC services"
{/* Team Section */}
<div id="team" data-section="team">
<TeamCardTen
title="Meet Our Expert Team"
tag="Certified Professionals"
tagAnimation="slide-up"
membersAnimation="slide-up"
members={[
{
id: "1", name: "Georgi Dimitrov", imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-young-businessman-with-his-arms-crossed_23-2148176206.jpg", imageAlt: "Georgi Dimitrov - Senior HVAC Technician"},
{
id: "2", name: "Maria Nikolova", 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: "Maria Nikolova - Service Coordinator"},
{
id: "3", name: "Ivan Aleksandrov", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man_1187-1055.jpg", imageAlt: "Ivan Aleksandrov - Installation Specialist"},
{
id: "4", name: "Svetla Georgieva", imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-thumb-up-grey-t-shirt-looking-happy-front-view_176474-15608.jpg", imageAlt: "Svetla Georgieva - Emergency Response Technician"},
]}
memberVariant="card"
useInvertedBackground={false}
ariaLabel="Team section"
/>
</div>
{/* Core Values Section */}
<div id="values" data-section="values">
<MetricCardThree
title="Our Core Values"
description="These principles guide every interaction and service we provide"
metrics={[
{
id: "reviews",
value: "80+",
title: "Customer Reviews",
description: "Real testimonials from satisfied clients across Sofia",
},
id: "professionalism", icon: Trophy,
title: "Professionalism", value: "Excellence"},
{
id: "rating",
value: "4.3★",
title: "Average Rating",
description: "Consistently high customer satisfaction scores",
},
id: "integrity", icon: CheckCircle,
title: "Integrity", value: "Honest"},
{
id: "response",
value: "Same Day",
title: "Service Response",
description: "Fast emergency and routine service availability",
},
id: "reliability", icon: Zap,
title: "Reliability", value: "Dependable"},
{
id: "experience",
value: "Licensed",
title: "Professional",
description: "Certified HVAC contractors serving Sofia professionally",
},
id: "expertise", icon: Users,
title: "Expertise", value: "Expert"},
]}
animationType="entrance-slide"
animationType="opacity"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
{/* Trust & Credentials Section */}
<div id="credentials" data-section="credentials">
<SocialProofOne
title="Industry Recognition & Certifications"
description="We maintain the highest standards of professionalism and expertise"
names={[
"Licensed HVAC Contractor", "Manufacturer Certified", "EPA Certified", "Insurance Protected", "4.3★ Customer Rated", "80+ Reviews"]}
tag="Trust Builders"
tagIcon={Award}
textboxLayout="default"
useInvertedBackground={false}
showCard={true}
speed={35}
ariaLabel="Credentials and certifications section"
/>
</div>
{/* Achievements Section */}
<div id="achievements" data-section="achievements">
<MetricCardThree
title="Our Achievements"
description="Measured success through customer satisfaction and professional excellence"
metrics={[
{
id: "customers", icon: Users,
title: "Satisfied Customers", value: "500+"},
{
id: "projects", icon: CheckCircle,
title: "Projects Completed", value: "1000+"},
{
id: "rating", icon: Star,
title: "Customer Rating", value: "4.3★"},
{
id: "experience", icon: Trophy,
title: "Years Experience", value: "10+"},
]}
animationType="opacity"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
{/* Call to Action */}
<div id="cta" data-section="cta">
<ContactCTA
tag="Get to Know Us Better"
tagIcon={Zap}
title="Experience Professional HVAC Service"
description="Let ClimaCom bring professional excellence and reliability to your air conditioning and heating needs. Contact our team today for a consultation."
buttons={[
{
text: "Schedule Consultation", href: "#contact"},
{
text: "Call: 02 943 1134", href: "tel:+359294431134"},
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
useInvertedBackground={false}
ariaLabel="About page CTA section"
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
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, 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"
/>

View File

@@ -1,61 +1,15 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import TeamCardFive from "@/components/sections/team/TeamCardFive";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import Link from "next/link";
import { Phone, Mail, MapPin, Clock, CheckCircle } from "lucide-react";
export default function ContactPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
];
const footerColumns = [
{
title: "Quick Links",
items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Services",
items: [
{ label: "AC Installation", href: "/services" },
{ label: "AC Repair", href: "/services" },
{ label: "Maintenance", href: "/services" },
{ label: "Heating Solutions", href: "/services" },
],
},
{
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: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -69,28 +23,31 @@ export default function ContactPage() {
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
{/* Navbar */}
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
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",
}}
animateOnLoad={true}
text: "Call Now: 02 943 1134", href: "tel:+359294431134"}}
/>
</div>
<div id="contact" data-section="contact">
{/* Main Contact Form Section */}
<div id="contact-form" data-section="contact-form">
<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."
background={{
variant: "plain",
}}
title="Contact ClimaCom Today"
description="We're ready to help with your HVAC needs. Reach out using any method below or fill out the contact form. Fast response guaranteed."
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=3"
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"
@@ -99,67 +56,113 @@ export default function ContactPage() {
/>
</div>
<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"
faqs={[
{/* Contact Methods Section */}
<div id="contact-methods" data-section="contact-methods">
<MetricCardEleven
title="Multiple Ways To Reach Us"
description="Contact ClimaCom through your preferred method. We're available for urgent and routine inquiries."
metrics={[
{
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: "phone", value: "02 943 1134", title: "Phone", description: "Call us for immediate assistance or to schedule service"},
{
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: "email", value: "24/7", title: "Email Support", description: "Send us your inquiry and we'll respond within hours"},
{
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: "location", value: "Sofia", title: "Visit Us", description: "g.k. Suhata Reka, bul. Vladimir Vazov 52, 1517 Sofia"},
{
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.",
},
id: "hours", value: "Mon-Sat", title: "Business Hours", description: "Mon-Fri: 8:30 AM - 5:30 PM | Sat: 9:00 AM - 4:00 PM"},
]}
imageSrc="http://img.b2bpic.net/free-photo/expert-using-pressure-measurement-device_482257-91080.jpg?_wi=2"
mediaAnimation="slide-up"
mediaPosition="right"
animationType="opacity"
textboxLayout="default"
faqsAnimation="slide-up"
useInvertedBackground={false}
animationType="smooth"
showCard={true}
/>
</div>
{/* Response Time Guarantees Section */}
<div id="response-guarantees" data-section="response-guarantees">
<MetricCardEleven
title="Our Service Guarantees"
description="We stand behind our commitment to exceptional customer service and reliable response times."
metrics={[
{
id: "emergency", value: "2 Hours", title: "Emergency Response", description: "Same-day emergency repair dispatch available 24/7"},
{
id: "quote", value: "< 1 Hour", title: "Quote Response", description: "Free quotes provided within one business hour"},
{
id: "callback", value: "100%", title: "Callback Guarantee", description: "We always follow up within 24 hours on all inquiries"},
{
id: "satisfaction", value: "4.3★", title: "Customer Satisfaction", description: "80+ verified reviews from satisfied Sofia clients"},
]}
animationType="opacity"
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
{/* Team Section - Trust Builder */}
<div id="team" data-section="team">
<TeamCardFive
title="Meet Our Expert Team"
description="Our licensed HVAC professionals bring years of experience and expertise to every project. Get to know the trusted team behind ClimaCom."
team={[
{
id: "1", name: "Aleksandar Ivanov", role: "Lead HVAC Technician", imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-young-businessman-with-his-arms-crossed_23-2148176206.jpg", imageAlt: "Aleksandar Ivanov - Lead HVAC Technician"},
{
id: "2", name: "Petra Georgieva", role: "Installation Specialist", 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: "Petra Georgieva - Installation Specialist"},
{
id: "3", name: "Viktor Popov", role: "Maintenance Expert", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man_1187-1055.jpg", imageAlt: "Viktor Popov - Maintenance Expert"},
{
id: "4", name: "Mariya Aleksandrova", role: "Customer Service Manager", 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 - Customer Service Manager"},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
tag="Professional Team"
tagIcon={CheckCircle}
tagAnimation="slide-up"
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
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>
);
}
}

View File

@@ -33,15 +33,13 @@ export default function HomePage() {
<NavbarLayoutFloatingInline
brandName="ClimaCom"
navItems={[
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ 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",
}}
text: "Call Now: 02 943 1134", href: "tel:+359294431134"}}
/>
</div>
@@ -52,27 +50,17 @@ export default function HomePage() {
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: "Call Now: 02 943 1134", href: "tel:+359294431134"},
{
text: "Request Free Quote",
href: "#contact",
},
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/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/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",
},
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}
@@ -88,71 +76,35 @@ export default function HomePage() {
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",
],
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",
},
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",
],
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",
},
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",
],
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",
},
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",
],
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",
},
text: "Get More Info", href: "/services#heating"},
],
},
]}
@@ -167,24 +119,15 @@ export default function HomePage() {
<InlineImageSplitTextAbout
heading={[
{
type: "text",
content: "Why Choose ClimaCom?",
},
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",
},
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: "Call Now", href: "tel:+359294431134"},
{
text: "Get Free Quote",
href: "#contact",
},
text: "Get Free Quote", href: "/contact"},
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
@@ -197,23 +140,9 @@ export default function HomePage() {
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",
]}
"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",
]}
"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"
@@ -231,29 +160,13 @@ export default function HomePage() {
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: "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: "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: "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",
},
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}
@@ -267,29 +180,13 @@ export default function HomePage() {
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: "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: "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: "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",
},
id: "experience", value: "Licensed", title: "Professional", description: "Certified HVAC contractors serving Sofia professionally"},
]}
animationType="opacity"
textboxLayout="default"
@@ -306,35 +203,17 @@ export default function HomePage() {
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: "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: "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: "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: "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: "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.",
},
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"
@@ -370,8 +249,7 @@ export default function HomePage() {
<FooterSimple
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "About", href: "/about" },
@@ -379,8 +257,7 @@ export default function HomePage() {
],
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "AC Installation", href: "/services#installation" },
{ label: "AC Repair", href: "/services#repair" },
{ label: "Maintenance", href: "/services#maintenance" },
@@ -388,20 +265,16 @@ export default function HomePage() {
],
},
{
title: "Contact",
items: [
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: "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: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -414,4 +287,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -2,12 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import Link from "next/link";
import { Zap, Phone } from "lucide-react";
import { Zap, CheckCircle, Clock, Award, Star, AlertCircle } from "lucide-react";
export default function ServicesPage() {
return (
@@ -34,94 +35,70 @@ export default function ServicesPage() {
{ name: "Contact", id: "contact" },
]}
button={{
text: "Call Now: 02 943 1134",
href: "tel:+359294431134",
}}
text: "Call Now: 02 943 1134", href: "tel:+359294431134"}}
/>
</div>
{/* Hero Section */}
<div id="hero" data-section="hero">
<HeroOverlay
title="Our Professional HVAC Services"
description="Comprehensive air conditioning, heating, and climate control solutions tailored to your residential or commercial needs. Expert installation, emergency repair, and preventative maintenance."
tag="Services"
tagIcon={Zap}
buttons={[
{
text: "Get Free Quote", href: "#contact"},
{
text: "Call: 02 943 1134", href: "tel:+359294431134"},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/expert-technician-measuring-refrigerant-charge_482257-90996.jpg"
imageAlt="Professional HVAC technician"
showDimOverlay={true}
showBlur={true}
ariaLabel="Services hero section"
/>
</div>
{/* Detailed Services Section */}
<div id="services-detail" data-section="services-detail">
<div id="services" data-section="services">
<FeatureCardTwelve
title="Our Comprehensive HVAC Services"
description="Professional air conditioning, heating, and climate control solutions tailored to your specific needs. We provide expert installation, rapid repairs, preventive maintenance, and complete HVAC system solutions for both residential and commercial properties throughout Sofia."
tag="Professional Services"
tagIcon={Zap}
title="Service Offerings"
description="Each service is designed to ensure your system runs efficiently and reliably throughout the year"
tag="What We Provide"
tagIcon={CheckCircle}
features={[
{
id: "installation",
label: "Installation",
title: "Air Conditioner Installation",
items: [
"Expert installation of premium AC units from top brands",
"Professional ductwork design and installation",
"Energy-efficient system selection and sizing",
"Same-day service availability for qualified projects",
"Full system testing and optimization",
"Extended warranty options available",
],
id: "installation", label: "Installation", title: "Professional AC & Heating Installation", items: [
"Free system assessment and recommendations", "Expert installation of premium units (Daikin, Mitsubishi, LG, Samsung)", "Ductwork design and installation", "Energy efficiency optimization", "Complete system testing before handover", "Same-day service available"],
buttons: [
{
text: "Get Installation Quote",
href: "#contact",
},
text: "Request Installation Quote", href: "#contact"},
],
},
{
id: "repair",
label: "Repair",
title: "AC Repair & Emergency Service",
items: [
"Fast emergency response available 24/7",
"Comprehensive diagnosis and troubleshooting",
"Quick fixes and component replacement",
"Warranty on all repairs performed",
"Same-day emergency service for critical breakdowns",
"Transparent pricing with no hidden fees",
],
id: "repair", label: "Repair", title: "Fast AC & Heating Repair Service", items: [
"24/7 emergency repair response", "Rapid diagnostics using advanced tools", "Quick component replacement and repairs", "Same-day emergency availability", "Comprehensive warranty on all repairs", "Transparent pricing before work begins"],
buttons: [
{
text: "Book Emergency Service",
href: "#contact",
},
text: "Book Emergency Repair", href: "tel:+359294431134"},
],
},
{
id: "maintenance",
label: "Maintenance",
title: "HVAC Maintenance & Servicing",
items: [
"Regular system cleaning and comprehensive inspection",
"Filter replacement and air quality optimization",
"Preventative maintenance plans tailored to your needs",
"Extend equipment lifespan and improve efficiency",
"Seasonal maintenance packages available",
"Priority service for maintenance plan members",
],
id: "maintenance", label: "Maintenance", title: "Preventative Maintenance Plans", items: [
"Regular system inspection and cleaning", "Filter replacement and optimization", "Refrigerant level checks", "Annual preventative maintenance packages", "Extended equipment lifespan through care", "Improved energy efficiency and cost savings"],
buttons: [
{
text: "Start Maintenance Plan",
href: "#contact",
},
text: "Schedule Maintenance", href: "#contact"},
],
},
{
id: "heating",
label: "Heating",
title: "Heating Systems & Solutions",
items: [
"Professional heating system installation and setup",
"Heat pump and boiler services for year-round comfort",
"Complete heating solutions for winter reliability",
"Energy-efficient heating options to reduce costs",
"Heating system repairs and emergency service",
"Winter preparedness inspections available",
],
id: "heating", label: "Heating", title: "Complete Heating System Solutions", items: [
"Heat pump installation and service", "Boiler installation and maintenance", "Radiant heating system design", "Year-round comfort solutions", "Energy-efficient heating options", "Professional installation and support"],
buttons: [
{
text: "Heating System Consultation",
href: "#contact",
},
text: "Get Heating Quote", href: "#contact"},
],
},
]}
@@ -131,36 +108,24 @@ export default function ServicesPage() {
/>
</div>
{/* Service Quality Metrics */}
<div id="service-metrics" data-section="service-metrics">
<MetricCardEleven
title="Our Service Excellence"
description="Proven expertise and commitment to customer satisfaction across all HVAC services"
{/* Key Benefits Section */}
<div id="benefits" data-section="benefits">
<MetricCardThree
title="Why Choose ClimaCom Services"
description="Our commitment to excellence ensures your complete satisfaction"
metrics={[
{
id: "response",
value: "2 Hours",
title: "Average Response Time",
description: "Emergency service typically within 2 hours of your call",
},
id: "response", icon: Clock,
title: "Same-Day Service", value: "Fast"},
{
id: "satisfaction",
value: "98%",
title: "Customer Satisfaction",
description: "Consistently exceeding customer expectations on every job",
},
id: "licensed", icon: Award,
title: "Fully Licensed", value: "Certified"},
{
id: "warranty",
value: "5 Years",
title: "Installation Warranty",
description: "Comprehensive warranty coverage on all installations",
},
id: "warranty", icon: CheckCircle,
title: "Warranty Included", value: "Guaranteed"},
{
id: "technicians",
value: "12+",
title: "Licensed Technicians",
description: "Certified professionals ready to serve your needs",
},
id: "support", icon: AlertCircle,
title: "24/7 Emergency", value: "Available"},
]}
animationType="opacity"
textboxLayout="default"
@@ -168,21 +133,40 @@ export default function ServicesPage() {
/>
</div>
{/* CTA Contact Section */}
<div id="contact" data-section="contact">
<ContactSplit
{/* Case Studies / Testimonials */}
<div id="case-studies" data-section="case-studies">
<TestimonialCardFifteen
testimonial="ClimaCom installed a new central AC system in our Sofia office. The installation was professional, on-time, and their team was courteous and knowledgeable. Our cooling bills dropped 20% after optimization. Highly recommended!"
rating={5}
author="Sofia Office Management"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/portrait-confident-young-businessman-with-his-arms-crossed_23-2148176206.jpg", alt: "Client testimonial"},
]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
useInvertedBackground={false}
ariaLabel="Client case study testimonial"
/>
</div>
{/* CTA Section */}
<div id="cta" data-section="cta">
<ContactCTA
tag="Ready to Get Started?"
title="Schedule Your HVAC Service Today"
description="Contact ClimaCom to book your installation, repair, or maintenance service. Get expert care from certified technicians. Call now or submit your request online for fast response."
tagIcon={Phone}
tagIcon={Zap}
title="Request Your Free HVAC Consultation"
description="Contact ClimaCom today for a professional assessment of your AC or heating needs. Our team will provide transparent pricing and expert recommendations."
buttons={[
{
text: "Get Free Quote", href: "#contact"},
{
text: "Call Now: 02 943 1134", href: "tel:+359294431134"},
]}
buttonAnimation="slide-up"
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=2"
mediaAnimation="opacity"
mediaPosition="right"
inputPlaceholder="Enter your email or phone number"
buttonText="Request Service Now"
termsText="By submitting, you agree to our service terms and privacy policy."
ariaLabel="Service consultation CTA section"
/>
</div>
@@ -191,17 +175,15 @@ export default function ServicesPage() {
<FooterSimple
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
{ label: "Contact", href: "#contact" },
],
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "AC Installation", href: "/services#installation" },
{ label: "AC Repair", href: "/services#repair" },
{ label: "Maintenance", href: "/services#maintenance" },
@@ -209,20 +191,16 @@ export default function ServicesPage() {
],
},
{
title: "Contact",
items: [
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: "g.k. Suhata Reka, 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: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },