Compare commits
41 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 20fd7b8ced | |||
| 0da9b4b661 | |||
| 078329b321 | |||
| b543c4e16c | |||
| ab5eb2bc4d | |||
| 8581853f95 | |||
| aa37f7fb21 | |||
| ef25b39dda | |||
| b9903fb28e | |||
| 0441413af6 | |||
| f97fb8be3b | |||
| a02581a2eb | |||
| d9c83771b0 | |||
| de7baa5a56 | |||
| 217eec86bd | |||
| b138ad7d92 | |||
| ca8685cb40 | |||
| ba53783b1c | |||
| 2a78911156 | |||
| c097a7fc35 | |||
| 8c8b196bbc | |||
| d5b3ecbbb1 | |||
| 9193954a3b | |||
| 0efb156b4e | |||
| ec7c88b733 | |||
| 7a958ac026 | |||
| 7e4f17690c | |||
| 514d3495ba | |||
| 3288f8fca3 | |||
| 7298105da5 | |||
| edf5c2f27c | |||
| 5a7d19c500 | |||
| a22e2579c0 | |||
| bf945844a2 | |||
| c2f7ae4ec1 | |||
| a7b15c205f | |||
| f55846afe4 | |||
| 7ea7b5a2c9 | |||
| 8ef1ac9780 | |||
| 8c4a258e92 | |||
| 5418f1876c |
@@ -4,22 +4,26 @@ import { Inter } from "next/font/google";
|
|||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import "@/lib/gsap-setup";
|
import "@/lib/gsap-setup";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
|
import { Montserrat } from "next/font/google";
|
||||||
|
import { Libre_Baskerville } from "next/font/google";
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant",
|
|
||||||
|
export const metadata: Metadata = { title: 'Expert HVAC Services | Reliable Heating & Cooling Solutions', description: 'Keep your home comfortable year-round with our professional HVAC installation, repair, and maintenance services. Fast, reliable, and energy-efficient solutions.' };
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const libreBaskerville = Libre_Baskerville({
|
||||||
|
variable: "--font-libre-baskerville",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
weight: ["400", "700"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter",
|
variable: "--font-inter",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = { title: 'Expert HVAC Services | Reliable Heating & Cooling Solutions', description: 'Keep your home comfortable year-round with our professional HVAC installation, repair, and maintenance services. Fast, reliable, and energy-efficient solutions.' };
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
@@ -28,10 +32,8 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
|
|||||||
307
src/app/page.tsx
307
src/app/page.tsx
@@ -6,15 +6,12 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
|
|||||||
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||||
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
|
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
||||||
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||||
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||||
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
|
||||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
|
||||||
import { ShieldCheck, Wrench, DollarSign, Phone } from "lucide-react";
|
|
||||||
|
|
||||||
export default function HvacPage() {
|
export default function LujanAccommodationsPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="directional-hover"
|
defaultButtonVariant="directional-hover"
|
||||||
@@ -31,305 +28,115 @@ export default function HvacPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
brandName="AirPro HVAC"
|
brandName="Ginkgo Biloba"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Propiedades", id: "services" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "Sobre Nosotros", id: "about" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonios", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contacto", id: "contact" },
|
||||||
]}
|
]}
|
||||||
button={{ text: "Get a Quote", href: "#contact" }}
|
button={{ text: "Reservar", href: "#contact" }}
|
||||||
animateOnLoad={false}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroOverlay
|
<HeroOverlay
|
||||||
title="Your Comfort Is Our Priority"
|
title="Encontrá más que un simple alojamiento: descubrí espacios pensados para disfrutar"
|
||||||
description="Professional heating, ventilation, and air conditioning services for homes and businesses. From installations to emergency repairs, we keep your climate perfect year-round."
|
description="Espacios cuidadosamente seleccionados y gestionados para brindarte comodidad, confianza y una estadía memorable en cada visita."
|
||||||
avatars={[
|
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg", alt: "Client" },
|
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", alt: "Client" },
|
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.jpg", alt: "Client" },
|
|
||||||
]}
|
|
||||||
avatarText="Trusted by 500+ clients"
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Schedule Service", href: "#contact" },
|
{ text: "Ver Propiedades", href: "#services" },
|
||||||
{ text: "Our Services", href: "#services" },
|
{ text: "Contactanos", href: "#contact" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-1.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D5eWpM4ALi5xBnJEyisP17ihvM/uploaded-1777584056398-5pezbhf0.png?_wi=1"
|
||||||
imageAlt="HVAC technician performing system maintenance"
|
imageAlt="Marca Luján Stays"
|
||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<MetricSplitMediaAbout
|
<MetricSplitMediaAbout
|
||||||
tag="About Us"
|
tag="Nuestra Trayectoria"
|
||||||
title="Reliable Climate Solutions Since 2005"
|
title="Referentes en hospitalidad local"
|
||||||
description="AirPro HVAC has been keeping homes and businesses comfortable for nearly two decades. Our certified technicians deliver expert installations, maintenance, and repairs — backed by transparent pricing and a commitment to getting the job done right the first time."
|
description="En Ginkgo Biloba, combinamos hospitalidad, cuidado y gestión cercana para brindar estadías memorables y acompañar a propietarios con atención constante y tranquilidad"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{ value: "+50", title: "Reseñas " },
|
||||||
value: "2,500+",
|
{ value: " +200", title: "Huéspedes recibidos " },
|
||||||
title: "Systems installed and serviced",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "98%",
|
|
||||||
title: "Customer satisfaction rate",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-2.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D5eWpM4ALi5xBnJEyisP17ihvM/uploaded-1777584330403-9p24bqi7.jpg"
|
||||||
imageAlt="Commercial HVAC units on rooftop"
|
imageAlt="Equipo de Luján Stays"
|
||||||
mediaBadge={{
|
|
||||||
text: "Active Now",
|
|
||||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-3.jpg",
|
|
||||||
avatarAlt: "Technician"
|
|
||||||
}}
|
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="services" data-section="services">
|
<div id="services" data-section="services">
|
||||||
<FeatureCardOne
|
<FeatureCardOne
|
||||||
title="Our Services"
|
title="Servicios de Gestión"
|
||||||
description="From installations to emergency repairs, we have your comfort covered."
|
description="Potenciamos tu propiedad o elegí el lugar perfecto para descansar."
|
||||||
buttons={[{ text: "Get a Quote", href: "#contact" }]}
|
|
||||||
buttonAnimation="slide-up"
|
|
||||||
features={[
|
features={[
|
||||||
{
|
{ title: "Espacios seleccionados en Luján", description: "Espacios cómodos y seleccionados para disfrutar tu estadía en la ciudad.", videoSrc: "placeholder-video?_wi=1" },
|
||||||
title: "AC Installation",
|
{ title: "Tu visita a Luján, sin complicaciones", description: "Reserva simple, ingreso ágil y atención durante toda tu estadía.", videoSrc: "placeholder-video?_wi=2" },
|
||||||
description: "Expert installation of high-efficiency air conditioning systems for homes and commercial spaces.",
|
{ title: "Hospitalidad local", description: "Te acompañamos para que vivas Luján con comodidad y tranquilidad.", videoSrc: "placeholder-video?_wi=3" }
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-4.jpg",
|
|
||||||
imageAlt: "AC installation service",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Heating Systems",
|
|
||||||
description: "Complete furnace and heat pump installations to keep you warm through every winter.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-5.jpg",
|
|
||||||
imageAlt: "Heating system service",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Maintenance Plans",
|
|
||||||
description: "Preventative maintenance programs that extend the life of your system and reduce energy costs.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-6.jpg",
|
|
||||||
imageAlt: "HVAC maintenance",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Emergency Repairs",
|
|
||||||
description: "24/7 emergency repair service — we respond fast when your system breaks down unexpectedly.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-7.jpg",
|
|
||||||
imageAlt: "Emergency HVAC repair",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Duct Cleaning",
|
|
||||||
description: "Professional duct cleaning to improve air quality and system efficiency throughout your property.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-8.jpg",
|
|
||||||
imageAlt: "Duct cleaning service",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "System Inspections",
|
|
||||||
description: "Thorough inspections with detailed reports and transparent recommendations — no hidden fees.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-9.jpg",
|
|
||||||
imageAlt: "HVAC system inspection",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
uniformGridCustomHeightClasses="aspect-square"
|
|
||||||
gridClassName="md:!grid-cols-3"
|
|
||||||
carouselThreshold={7}
|
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<FeatureBorderGlow
|
|
||||||
title="Why Choose AirPro"
|
|
||||||
description="What sets us apart from the rest"
|
|
||||||
features={[
|
|
||||||
{
|
|
||||||
icon: ShieldCheck,
|
|
||||||
title: "Reliability & Trust",
|
|
||||||
description: "Looking for a dependable HVAC company? We arrive on time and do the job right.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: Wrench,
|
|
||||||
title: "Quality Workmanship",
|
|
||||||
description: "Our skilled technicians excel in various HVAC repairs, using only top-quality materials.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: DollarSign,
|
|
||||||
title: "Fair & Transparent Pricing",
|
|
||||||
description: "No surprises here! We offer clear quotes and fair pricing for quality work.",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
textboxLayout="default"
|
|
||||||
animationType="slide-up"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<FeatureCardEight
|
|
||||||
title="How It Works"
|
|
||||||
description="Our simple process from first call to finished job"
|
|
||||||
features={[
|
|
||||||
{
|
|
||||||
title: "Schedule a Call",
|
|
||||||
description: "Contact us by phone or online to describe your HVAC issue. We'll find a time that works for you.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-6.jpg",
|
|
||||||
imageAlt: "Scheduling a service call",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "On-Site Diagnosis",
|
|
||||||
description: "A certified technician arrives on time, inspects your system, and explains the issue with a clear quote.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-7.jpg",
|
|
||||||
imageAlt: "Technician diagnosing HVAC system",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Expert Repair or Install",
|
|
||||||
description: "We complete the work using premium parts and proven techniques — most jobs done same day.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-4.jpg",
|
|
||||||
imageAlt: "HVAC repair in progress",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Quality Guarantee",
|
|
||||||
description: "We test everything before we leave and back all work with our satisfaction guarantee.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-8.jpg",
|
|
||||||
imageAlt: "Final quality check",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardThirteen
|
<TestimonialCardOne
|
||||||
title="What Our Clients Say"
|
title="Qué dicen nuestros huéspedes"
|
||||||
description="Hear from homeowners and businesses who trust AirPro HVAC."
|
description="La excelencia es nuestra marca registrada. Estos son algunos comentarios de quienes ya disfrutaron de nuestros servicios en Luján."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", name: "Lucía Fernández", role: "Huésped", company: "Buenos Aires", rating: 5 },
|
||||||
id: "1",
|
{ id: "2", name: "Martín Ruiz", role: "Propietario", company: "Luján", rating: 5 }
|
||||||
name: "James R.",
|
|
||||||
handle: "Homeowner, Austin TX",
|
|
||||||
testimonial: "AirPro replaced our entire AC system in one day. The crew was professional, clean, and the new unit runs quieter than anything we've had before. Highly recommend.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg",
|
|
||||||
imageAlt: "James R.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
name: "Linda M.",
|
|
||||||
handle: "Business Owner, Dallas TX",
|
|
||||||
testimonial: "We use AirPro for all three of our office locations. Their maintenance plans have saved us thousands in emergency repairs. Always on time, always honest.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg",
|
|
||||||
imageAlt: "Linda M.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
name: "Carlos D.",
|
|
||||||
handle: "Homeowner, Houston TX",
|
|
||||||
testimonial: "Our furnace broke down on the coldest night of the year. AirPro had someone at our door within two hours. Fixed it on the spot. Can't thank them enough.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.jpg",
|
|
||||||
imageAlt: "Carlos D.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
showRating={true}
|
gridVariant="uniform-all-items-equal"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqSplitText
|
<FaqBase
|
||||||
sideTitle="Frequently Asked Questions"
|
title="Preguntas Frecuentes"
|
||||||
buttons={[{ text: "Contact Us", href: "#contact" }]}
|
description="Resolvemos tus dudas sobre nuestros alojamientos y servicios de administración."
|
||||||
buttonAnimation="slide-up"
|
|
||||||
faqsAnimation="slide-up"
|
|
||||||
textPosition="left"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{ id: "1", title: "¿Gestionan propiedades de terceros?", content: "Sí, somos expertos en administrar propiedades de terceros con un enfoque en rentabilidad y cuidado del bien." },
|
||||||
id: "1",
|
{ id: "2", title: "¿Cómo hago una reserva?", content: "Podés realizar consultas directamente a través de nuestro formulario de contacto o enviándonos un mensaje." }
|
||||||
title: "Do you offer 24/7 emergency service?",
|
|
||||||
content: "Yes! We provide round-the-clock emergency HVAC service. If your system breaks down in the middle of the night or on a weekend, call us and a technician will be at your door as soon as possible.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
title: "How often should I service my HVAC system?",
|
|
||||||
content: "We recommend servicing your system at least twice a year — once before summer for cooling and once before winter for heating. Regular maintenance extends your system's life and keeps energy bills low.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
title: "What brands do you install and repair?",
|
|
||||||
content: "We work with all major HVAC brands including Carrier, Trane, Lennox, Daikin, Rheem, and more. Our technicians are trained and certified across multiple manufacturers.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
title: "Do you offer financing options?",
|
|
||||||
content: "Yes, we offer flexible financing plans for new installations and major repairs. Ask about our 0% interest options so you can stay comfortable without straining your budget.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
title: "How long does a typical installation take?",
|
|
||||||
content: "Most residential HVAC installations are completed in one day. Larger commercial projects may take 2-3 days depending on the scope. We'll give you an accurate timeline during your consultation.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
|
faqsAnimation="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactSplit
|
||||||
tag="Get in Touch"
|
tag="Contacto"
|
||||||
tagIcon={Phone}
|
title="Comenzá hoy mismo"
|
||||||
title="Ready to Stay Comfortable Year-Round?"
|
description="¿Querés que administremos tu propiedad o buscas el lugar ideal para tu próxima visita? Escribinos y nos pondremos en contacto."
|
||||||
description="Whether you need a new installation, emergency repair, or routine maintenance — our team is ready to help. Call us today or request a free quote."
|
|
||||||
buttons={[
|
|
||||||
{ text: "Get a Free Quote", href: "#contact" },
|
|
||||||
{ text: "Call (555) 987-6543", href: "tel:5559876543" },
|
|
||||||
]}
|
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterMedia
|
<FooterLogoEmphasis
|
||||||
logoText="AirPro HVAC"
|
logoText="Ginkgo Biloba"
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-10.jpg"
|
|
||||||
imageAlt="HVAC technician inspecting equipment"
|
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ items: [{ label: "Propiedades", href: "#services" }, { label: "Sobre Nosotros", href: "#about" }] },
|
||||||
title: "Services",
|
{ items: [{ label: "Contacto", href: "#contact" }] }
|
||||||
items: [
|
|
||||||
{ label: "AC Installation", href: "#services" },
|
|
||||||
{ label: "Heating Systems", href: "#services" },
|
|
||||||
{ label: "Maintenance Plans", href: "#services" },
|
|
||||||
{ label: "Emergency Repairs", href: "#services" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Company",
|
|
||||||
items: [
|
|
||||||
{ label: "About Us", href: "#about" },
|
|
||||||
{ label: "Testimonials", href: "#testimonials" },
|
|
||||||
{ label: "FAQ", href: "#faq" },
|
|
||||||
{ label: "Contact", href: "#contact" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Contact",
|
|
||||||
items: [
|
|
||||||
{ label: "(555) 987-6543", href: "tel:5559876543" },
|
|
||||||
{ label: "info@airprohvac.com", href: "mailto:info@airprohvac.com" },
|
|
||||||
{ label: "Austin, TX" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2026 | AirPro HVAC"
|
className="bg-primary-cta text-primary-cta-text"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-inter-tight), sans-serif;
|
font-family: var(--font-libre-baskerville), serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
--background: #ffffff;
|
--background: #ffffff;
|
||||||
--card: #f9f9f9;
|
--card: #f9f9f9;
|
||||||
--foreground: #000612e6;
|
--foreground: #1a1a1a;
|
||||||
--primary-cta: #15479c;
|
--primary-cta: #aa6f47;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #f9f9f9;
|
--secondary-cta: #333f29;
|
||||||
--secondary-cta-text: #000612e6;
|
--secondary-cta-text: #ffffff;
|
||||||
--accent: #e2e2e2;
|
--accent: #d4c8b7;
|
||||||
--background-accent: #c4c4c4;
|
--background-accent: #e6dcd0;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user