Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 72e04381f1 | |||
| 364fcaad8a | |||
| abcd50caba | |||
| d759a56b10 | |||
| 6bf8945f63 | |||
| b7f8f87fb9 | |||
| c8cfedddd8 | |||
| 443ff73210 | |||
| 0df06f8aa9 | |||
| c4bec1b3ef | |||
| 45106204d0 | |||
| af9ad8a9b2 | |||
| 376b9db1e9 | |||
| 8e360758c6 | |||
| 8d8b48fb93 | |||
| 92a8211b04 | |||
| f1d562541e | |||
| 897b89df0f | |||
| 43f170b688 | |||
| 934f4e405f | |||
| 53d334cce7 | |||
| 3987af59be | |||
| 31b09124db | |||
| fd5f2ca24b | |||
| b7dfb1d3bb | |||
| c36ccb1362 | |||
| 4f76e748a2 | |||
| d917457116 | |||
| f593370fd8 | |||
| 212bfb4ee6 | |||
| 7051d36072 |
34
src/app/apartments/page.tsx
Normal file
34
src/app/apartments/page.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
|
||||
export default function ApartmentsPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="AirPro HVAC"
|
||||
navItems={[{ name: "Apartments", id: "/apartments" }, { name: "Hotels", id: "/hotels" }, { name: "Rentals", id: "/rentals" }, { name: "Home", id: "/" }]}
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardOne
|
||||
title="Apartment Listings"
|
||||
description="Browse our selection of premium apartments available for climate-controlled living."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
features={[{ title: "Modern Studio", description: "High efficiency AC included", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-4.jpg" }, { title: "City Loft", description: "Climate controlled city living", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-1.jpg" }, { title: "Luxury Suite", description: "Advanced HVAC integrated", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-2.jpg" }]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia logoText="AirPro HVAC" columns={[]} videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/video-1.mp4?_wi=1" />
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
34
src/app/hotels/page.tsx
Normal file
34
src/app/hotels/page.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
|
||||
export default function HotelsPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="AirPro HVAC"
|
||||
navItems={[{ name: "Apartments", id: "/apartments" }, { name: "Hotels", id: "/hotels" }, { name: "Rentals", id: "/rentals" }, { name: "Home", id: "/" }]}
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardOne
|
||||
title="Hotel Listings"
|
||||
description="Explore our partnered hotels equipped with top-tier HVAC systems for optimal comfort."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
features={[{ title: "Grand Plaza Hotel", description: "Central climate control throughout", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-5.jpg" }, { title: "Mountain Resort", description: "Eco-friendly heating systems", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-6.jpg?_wi=1" }, { title: "Seaside Inn", description: "Coastal climate solutions", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-3.jpg" }]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia logoText="AirPro HVAC" columns={[]} videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/video-1.mp4?_wi=2" />
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
67
src/app/locations/page.tsx
Normal file
67
src/app/locations/page.tsx
Normal file
@@ -0,0 +1,67 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
import { useState } from "react";
|
||||
|
||||
export default function LocationsPage() {
|
||||
const [search, setSearch] = useState("");
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="AirPro HVAC"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Properties", id: "/properties" },
|
||||
{ name: "Locations", id: "/locations" },
|
||||
]}
|
||||
button={{ text: "Get a Quote", href: "/#contact" }}
|
||||
animateOnLoad={false}
|
||||
/>
|
||||
</div>
|
||||
<main className="pt-32 pb-20 px-6 container mx-auto">
|
||||
<h1 className="text-5xl font-bold mb-8">Worldwide Locations</h1>
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Filter locations..."
|
||||
className="mb-8 p-3 w-full border rounded-lg"
|
||||
value={search}
|
||||
onChange={(e) => setSearch(e.target.value)}
|
||||
/>
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
|
||||
{["North America", "Europe", "Asia", "Oceania"].filter(loc => loc.toLowerCase().includes(search.toLowerCase())).map((loc) => (
|
||||
<div key={loc} className="p-6 border rounded-lg bg-card shadow-sm hover:shadow-md transition-shadow">
|
||||
<h3 className="text-xl font-semibold">{loc}</h3>
|
||||
<p>Expert HVAC services available in {loc}.</p>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</main>
|
||||
<FooterMedia
|
||||
logoText="AirPro HVAC"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-10.jpg"
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Installation", href: "/#services" }] },
|
||||
{ title: "Company", items: [{ label: "Home", href: "/" }] }
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
261
src/app/page.tsx
261
src/app/page.tsx
@@ -7,14 +7,13 @@ import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
|
||||
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
||||
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
|
||||
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
||||
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 RealEstatePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
@@ -31,61 +30,51 @@ export default function HvacPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="AirPro HVAC"
|
||||
brandName="Prime Realty"
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{ text: "Get a Quote", href: "#contact" }}
|
||||
button={{ text: "Property Inquiries", href: "#contact" }}
|
||||
animateOnLoad={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
title="Your Comfort Is Our Priority"
|
||||
description="Professional heating, ventilation, and air conditioning services for homes and businesses. From installations to emergency repairs, we keep your climate perfect year-round."
|
||||
title="Find Your Dream Property"
|
||||
description="Expert real estate services connecting you with luxury residential and commercial properties. We make finding your next home or investment seamless and stress-free."
|
||||
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"
|
||||
avatarText="Over 1,000 successful deals closed"
|
||||
buttons={[
|
||||
{ text: "Schedule Service", href: "#contact" },
|
||||
{ text: "Our Services", href: "#services" },
|
||||
{ text: "View Listings", href: "#services" },
|
||||
{ text: "Get Consultation", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-1.jpg"
|
||||
imageAlt="HVAC technician performing system maintenance"
|
||||
imageSrc="https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&q=80&w=1200"
|
||||
imageAlt="Modern luxury property facade"
|
||||
showDimOverlay={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MetricSplitMediaAbout
|
||||
tag="About Us"
|
||||
title="Reliable Climate Solutions Since 2005"
|
||||
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."
|
||||
tag="Our Mission"
|
||||
title="Redefining Real Estate Excellence"
|
||||
description="With over 15 years in the market, Prime Realty has become a trusted partner for buyers, sellers, and investors. Our commitment to transparency, market insights, and personalized support ensures every client reaches their property goals effectively."
|
||||
metrics={[
|
||||
{
|
||||
value: "2,500+",
|
||||
title: "Systems installed and serviced",
|
||||
},
|
||||
{
|
||||
value: "98%",
|
||||
title: "Customer satisfaction rate",
|
||||
},
|
||||
{ value: "$500M+", title: "Total property value managed" },
|
||||
{ value: "99%", title: "Client retention rate" },
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-2.jpg"
|
||||
imageAlt="Commercial HVAC units on rooftop"
|
||||
mediaBadge={{
|
||||
text: "Active Now",
|
||||
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-3.jpg",
|
||||
avatarAlt: "Technician"
|
||||
}}
|
||||
imageSrc="https://images.unsplash.com/photo-1572177812156-58036aae249c?auto=format&fit=crop&q=80&w=800"
|
||||
imageAlt="Modern office real estate team workspace"
|
||||
mediaBadge={{ text: "Licensed Agents" }}
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -93,146 +82,43 @@ export default function HvacPage() {
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardOne
|
||||
title="Our Services"
|
||||
description="From installations to emergency repairs, we have your comfort covered."
|
||||
buttons={[{ text: "Get a Quote", href: "#contact" }]}
|
||||
title="Our Specialized Services"
|
||||
description="Comprehensive property solutions tailored to your unique requirements."
|
||||
buttons={[{ text: "Contact Our Agents", href: "#contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "AC Installation",
|
||||
description: "Expert installation of high-efficiency air conditioning systems for homes and commercial spaces.",
|
||||
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",
|
||||
},
|
||||
{ title: "Residential Sales", description: "Expert guidance to help you buy or sell your dream home at the best market valuation. Contact: (555) 111-2222", imageSrc: "https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&q=80&w=600", imageAlt: "Luxury residential home" },
|
||||
{ title: "Commercial Leasing", description: "Prime office and retail spaces designed to help your business grow and thrive. Contact: (555) 333-4444", imageSrc: "https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=600", imageAlt: "Commercial office building" },
|
||||
{ title: "Investment Advisory", description: "Strategic insights to help you build a diversified and high-yield real estate portfolio. Contact: (555) 555-6666", imageSrc: "https://images.unsplash.com/photo-1554469384-e58fac16e23a?auto=format&fit=crop&q=80&w=600", imageAlt: "Real estate investment analysis" },
|
||||
{ title: "Property Valuation", description: "Accurate and detailed property appraisals using the latest market data and insights. Contact: (555) 777-8888", imageSrc: "https://images.unsplash.com/photo-1560520653-9e0e4c8959d7?auto=format&fit=crop&q=80&w=600", imageAlt: "Market valuation documents" },
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
uniformGridCustomHeightClasses="aspect-square"
|
||||
gridClassName="md:!grid-cols-3"
|
||||
carouselThreshold={7}
|
||||
gridClassName="md:!grid-cols-2"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FeatureBorderGlow
|
||||
title="Why Choose AirPro"
|
||||
description="What sets us apart from the rest"
|
||||
title="The Prime Difference"
|
||||
description="Why clients choose Prime Realty as their partner"
|
||||
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.",
|
||||
},
|
||||
{ icon: ShieldCheck, title: "Trusted Expertise", description: "Decades of market knowledge ensuring informed decisions at every step." },
|
||||
{ icon: Wrench, title: "Tailored Solutions", description: "Personalized property search and sale plans designed around your lifestyle." },
|
||||
{ icon: DollarSign, title: "Maximized Value", description: "Data-driven negotiation skills to secure the best deal in the current market." },
|
||||
]}
|
||||
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">
|
||||
<TestimonialCardThirteen
|
||||
title="What Our Clients Say"
|
||||
description="Hear from homeowners and businesses who trust AirPro HVAC."
|
||||
title="Client Success Stories"
|
||||
description="See why homeowners trust Prime Realty for their property needs."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
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.",
|
||||
},
|
||||
{ id: "1", name: "Sarah & Mark T.", handle: "Homeowners, Austin", testimonial: "Prime Realty made the buying process so easy. They listened to exactly what we wanted and found our dream home within a week. Highly recommended!", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg", imageAlt: "Sarah & Mark" },
|
||||
{ id: "2", name: "Robert H.", handle: "Real Estate Investor, Dallas", testimonial: "I've worked with many agencies, but Prime Realty's data analysis and property valuation tools are unparalleled. They've helped me add immense value to my portfolio.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", imageAlt: "Robert H." },
|
||||
]}
|
||||
showRating={true}
|
||||
animationType="slide-up"
|
||||
@@ -243,90 +129,41 @@ export default function HvacPage() {
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
sideTitle="Frequently Asked Questions"
|
||||
buttons={[{ text: "Contact Us", href: "#contact" }]}
|
||||
buttons={[{ text: "Get in Touch", href: "#contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
textPosition="left"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
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.",
|
||||
},
|
||||
{ id: "1", title: "What areas do you serve?", content: "We provide comprehensive real estate services across the greater Austin, Dallas, and Houston metropolitan areas." },
|
||||
{ id: "2", title: "How do I get an appraisal?", content: "Contact our team for a free property valuation. We'll analyze recent market trends to provide an accurate estimate of your home's worth." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Get in Touch"
|
||||
tag="Inquire Today"
|
||||
tagIcon={Phone}
|
||||
title="Ready to Stay Comfortable Year-Round?"
|
||||
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."
|
||||
title="Ready to Start Your Real Estate Journey?"
|
||||
description="Whether you are looking to buy, sell, lease, or invest — our expert team is here to guide you. Reach out today for a free property consultation."
|
||||
buttons={[
|
||||
{ text: "Get a Free Quote", href: "#contact" },
|
||||
{ text: "Call (555) 987-6543", href: "tel:5559876543" },
|
||||
{ text: "Request Consultation", href: "#contact" },
|
||||
{ text: "Call (555) 123-4567", href: "tel:5551234567" },
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
logoText="AirPro HVAC"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-10.jpg"
|
||||
imageAlt="HVAC technician inspecting equipment"
|
||||
logoText="Prime Realty"
|
||||
imageSrc="https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&q=80&w=600"
|
||||
imageAlt="Luxury estate architecture"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
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" },
|
||||
],
|
||||
},
|
||||
{ title: "Services", items: [{ label: "Residential Sales", href: "#services" }, { label: "Commercial Leasing", href: "#services" }] },
|
||||
{ title: "Company", items: [{ label: "About Prime", href: "#about" }, { label: "Contact Us", href: "#contact" }] },
|
||||
]}
|
||||
copyrightText="© 2026 | AirPro HVAC"
|
||||
copyrightText="© 2026 | Prime Realty"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
50
src/app/profile/page.tsx
Normal file
50
src/app/profile/page.tsx
Normal file
@@ -0,0 +1,50 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import React from "react";
|
||||
|
||||
export default function ProfilePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Prime Realty"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Profile", id: "/profile" },
|
||||
]}
|
||||
button={{ text: "Sign Out", href: "/" }}
|
||||
/>
|
||||
</div>
|
||||
<div className="min-h-screen pt-32 px-6 max-w-4xl mx-auto">
|
||||
<h1 className="text-4xl font-bold mb-8">User Profile</h1>
|
||||
<div className="bg-card p-8 rounded-lg shadow-sm border border-border">
|
||||
<h2 className="text-2xl font-semibold mb-6">Credentials & Authentication</h2>
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<label className="block text-sm font-medium mb-1">Email Address</label>
|
||||
<input type="email" disabled defaultValue="user@example.com" className="w-full p-2 border rounded bg-muted" />
|
||||
</div>
|
||||
<div>
|
||||
<label className="block text-sm font-medium mb-1">Password</label>
|
||||
<input type="password" defaultValue="••••••••" className="w-full p-2 border rounded" />
|
||||
</div>
|
||||
<button className="bg-primary text-primary-foreground px-4 py-2 rounded">Update Credentials</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
69
src/app/properties/page.tsx
Normal file
69
src/app/properties/page.tsx
Normal file
@@ -0,0 +1,69 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
import { useState } from "react";
|
||||
|
||||
export default function PropertiesPage() {
|
||||
const [search, setSearch] = useState("");
|
||||
const [priceSort, setPriceSort] = useState("");
|
||||
|
||||
const filters = [
|
||||
{
|
||||
label: "Price Rating", options: ["None", "Lowest to Highest", "Highest to Lowest"],
|
||||
selected: priceSort,
|
||||
onChange: (value: string) => setPriceSort(value),
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="AirPro HVAC"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Properties", id: "/properties" },
|
||||
{ name: "Locations", id: "/locations" },
|
||||
]}
|
||||
button={{ text: "Get a Quote", href: "/#contact" }}
|
||||
animateOnLoad={false}
|
||||
/>
|
||||
</div>
|
||||
<main className="pt-32 pb-20">
|
||||
<ProductCatalog
|
||||
layout="page"
|
||||
products={[]}
|
||||
searchValue={search}
|
||||
onSearchChange={setSearch}
|
||||
searchPlaceholder="Search properties..."
|
||||
filters={filters}
|
||||
/>
|
||||
</main>
|
||||
<FooterMedia
|
||||
logoText="AirPro HVAC"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-10.jpg"
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Installation", href: "/#services" }] },
|
||||
{ title: "Company", items: [{ label: "Home", href: "/" }] }
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
34
src/app/rentals/page.tsx
Normal file
34
src/app/rentals/page.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
|
||||
export default function RentalsPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="AirPro HVAC"
|
||||
navItems={[{ name: "Apartments", id: "/apartments" }, { name: "Hotels", id: "/hotels" }, { name: "Rentals", id: "/rentals" }, { name: "Home", id: "/" }]}
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardOne
|
||||
title="Rental Listings"
|
||||
description="Browse rental properties featuring energy-efficient heating and cooling systems."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
features={[{ title: "Modern Villa", description: "Full HVAC maintenance included", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-6.jpg?_wi=2" }, { title: "Cozy Cottage", description: "High efficiency furnace", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-7.jpg" }, { title: "Townhouse Retreat", description: "Multi-zone comfort system", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-8.jpg" }]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia logoText="AirPro HVAC" columns={[]} videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/video-1.mp4?_wi=3" />
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user