Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fdc47c8ab1 | |||
| a1e6e3172a | |||
| 44372c8081 | |||
| a16ac8ca76 | |||
| 3ea29c1279 | |||
| 88f58fbf22 | |||
| 26e4953dd5 | |||
| 9c4f526c6c | |||
| 15b567eecc | |||
| d3fa8834d9 | |||
| cc9ccb8657 | |||
| c48d104562 | |||
| d268e03956 |
@@ -7,6 +7,16 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
|
||||
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||
import { CheckCircle } from "lucide-react";
|
||||
|
||||
const globalNavItems = [
|
||||
{ name: "Solutions", id: "/#solutions" },
|
||||
{ name: "About Us", id: "/#about" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
{ name: "Shop", id: "/products" },
|
||||
{ name: "Get a Quote", id: "/order" }
|
||||
];
|
||||
|
||||
export default function OrderConfirmationPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -24,23 +34,17 @@ export default function OrderConfirmationPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="AirPro HVAC"
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Place Order", id: "/order" }
|
||||
]}
|
||||
button={{ text: "Chat on WhatsApp", href: "https://wa.me/message/ICLIEAFVM43DG1" }}
|
||||
brandName="Star Cam"
|
||||
navItems={globalNavItems}
|
||||
button={{ text: "Get a Quote", href: "/order" }}
|
||||
animateOnLoad={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="order-confirmation" data-section="order-confirmation">
|
||||
<HeroOverlay
|
||||
title="Order Received!"
|
||||
description="Thank you for placing your service order with AirPro HVAC. We've received your request and will contact you shortly to confirm the details and schedule your service."
|
||||
title="Quote Request Received!"
|
||||
description="Thank you for contacting Star Cam. We've received your request and will be in touch shortly to discuss your security needs."
|
||||
tag="Confirmation"
|
||||
tagIcon={CheckCircle}
|
||||
buttons={[
|
||||
|
||||
@@ -8,6 +8,16 @@ import { Sparkles } from "lucide-react";
|
||||
import ContactForm from "@/components/form/ContactForm";
|
||||
import { useRouter } from "next/navigation";
|
||||
|
||||
const globalNavItems = [
|
||||
{ name: "Solutions", id: "/#solutions" },
|
||||
{ name: "About Us", id: "/#about" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
{ name: "Shop", id: "/products" },
|
||||
{ name: "Get a Quote", id: "/order" }
|
||||
];
|
||||
|
||||
export default function OrderPage() {
|
||||
const router = useRouter();
|
||||
|
||||
@@ -35,28 +45,22 @@ export default function OrderPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="AirPro HVAC"
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Place Order", id: "/order" }
|
||||
]}
|
||||
button={{ text: "Chat on WhatsApp", href: "https://wa.me/message/ICLIEAFVM43DG1" }}
|
||||
brandName="Star Cam"
|
||||
navItems={globalNavItems}
|
||||
button={{ text: "Get a Quote", href: "/order" }}
|
||||
animateOnLoad={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="order-form" data-section="order-form">
|
||||
<ContactForm
|
||||
title="Place Your Service Order"
|
||||
description="Tell us what HVAC service you need. Our team will get back to you shortly."
|
||||
tag="New Order"
|
||||
title="Get Your Free Security Camera Quote"
|
||||
description="Tell us about your security needs, and our experts will design a custom solution for you."
|
||||
tag="Free Quote"
|
||||
tagIcon={Sparkles}
|
||||
inputPlaceholder="Enter your request details (e.g., 'AC Repair', 'Furnace Installation')"
|
||||
buttonText="Submit Order"
|
||||
termsText="By submitting, you agree to allow AirPro HVAC to contact you regarding your service request."
|
||||
inputPlaceholder="Describe your security requirements (e.g., 'Home surveillance', 'Business monitoring', 'Specific camera types')"
|
||||
buttonText="Request Quote"
|
||||
termsText="By submitting, you agree to allow Star Cam to contact you regarding your security quote."
|
||||
onSubmit={handleSubmitOrder}
|
||||
centered={true}
|
||||
useInvertedBackground={false}
|
||||
|
||||
110
src/app/page.tsx
110
src/app/page.tsx
@@ -14,6 +14,43 @@ import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
import { ShieldCheck, Wrench, DollarSign, Phone } from "lucide-react";
|
||||
|
||||
const globalNavItems = [
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "Place Order", id: "/order" }
|
||||
];
|
||||
|
||||
const globalFooterColumns = [
|
||||
{
|
||||
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: "(512) 555-1234", href: "tel:5125551234" },
|
||||
{ label: "info@airprohvac.com", href: "mailto:info@airprohvac.com" },
|
||||
{ label: "Chat on WhatsApp", href: "https://wa.me/message/ICLIEAFVM43DG1" },
|
||||
{ label: "123 Comfort St, Austin, TX 78701" }
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
export default function HvacPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -31,14 +68,8 @@ export default function HvacPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="AirPro HVAC"
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Place Order", id: "/order" }
|
||||
]}
|
||||
brandName="STAR CAM "
|
||||
navItems={globalNavItems}
|
||||
button={{ text: "Chat on WhatsApp", href: "https://wa.me/message/ICLIEAFVM43DG1" }}
|
||||
animateOnLoad={false}
|
||||
/>
|
||||
@@ -46,12 +77,12 @@ export default function HvacPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
title="Your Comfort Is Our Priority"
|
||||
title="STAR CAM"
|
||||
description="Professional heating, ventilation, and air conditioning services for homes and businesses. From installations to emergency repairs, we keep your climate perfect year-round."
|
||||
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" }
|
||||
{ src: "https://img.b2bpic.net/free-photo/two-happy-men-working-together-new-business-project_171337-7319.jpg?id=7337520", alt: "Client" },
|
||||
{ src: "https://img.b2bpic.net/free-photo/beautiful-modern-building-modern-architecture_181624-21692.jpg?id=11111843", alt: "Client" },
|
||||
{ src: "https://img.b2bpic.net/premium-photo/man-hands-with-web-30-technology-digital-tech-future-30-technology-global-network-blockchain-crypto-currency-global-futuristic-website-internet-development-data_1137986-1558.jpg?id=145099533", alt: "Client" }
|
||||
]}
|
||||
avatarText="Trusted by 500+ clients"
|
||||
buttons={[
|
||||
@@ -59,7 +90,7 @@ export default function HvacPage() {
|
||||
{ text: "Our Services", href: "#services" }
|
||||
]}
|
||||
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_3EprnGZAq4usWBFNmipWTEdOdyV/uploaded-1780888285884-9y22pbat.png"
|
||||
imageAlt="HVAC technician performing system maintenance"
|
||||
showDimOverlay={true}
|
||||
/>
|
||||
@@ -68,8 +99,28 @@ export default function HvacPage() {
|
||||
<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."
|
||||
title="خبره طويله وثقه"
|
||||
description="لماذا STAR CAM؟
|
||||
|
||||
|
||||
أحدث تقنيات المراقبة والأمان.
|
||||
|
||||
|
||||
جودة عالية وأداء موثوق.
|
||||
|
||||
|
||||
تركيب احترافي وفق أعلى المعايير.
|
||||
|
||||
|
||||
دعم فني وخدمة ما بعد البيع.
|
||||
|
||||
|
||||
حلول مخصصة تناسب مختلف القطاعات.
|
||||
|
||||
|
||||
نسعى إلى بناء بيئة أكثر أمانًا من خلال حلول ذكية تمنح عملاءنا راحة البال والثقة الكاملة في حماية ممتلكاتهم وأعمالهم.
|
||||
STAR CAM... نراقب المستقبل لحماية اليوم.
|
||||
"
|
||||
metrics={[
|
||||
{
|
||||
value: "2,500+", title: "Systems installed and serviced"},
|
||||
@@ -177,7 +228,7 @@ export default function HvacPage() {
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
sideTitle="Frequently Asked Questions"
|
||||
buttons={[{ text: "Chat on WhatsApp", href: "https://wa.me/message/ICLIEAFVM43DG1" }]}
|
||||
buttons={[{ text: "Chat on WhatsApp", href: "https://wa.me/message/ICLIEAFVM43DG1" }]}
|
||||
buttonAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
textPosition="left"
|
||||
@@ -218,32 +269,7 @@ export default function HvacPage() {
|
||||
logoText="AirPro HVAC"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-10.jpg?_wi=1"
|
||||
imageAlt="HVAC technician inspecting equipment"
|
||||
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: "(512) 555-1234", href: "tel:5125551234" },
|
||||
{ label: "info@airprohvac.com", href: "mailto:info@airprohvac.com" },
|
||||
{ label: "Chat on WhatsApp", href: "https://wa.me/message/ICLIEAFVM43DG1" },
|
||||
{ label: "123 Comfort St, Austin, TX 78701" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
columns={globalFooterColumns}
|
||||
copyrightText="© 2026 | AirPro HVAC"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user