Merge version_6 into main #10

Merged
bender merged 2 commits from version_6 into main 2026-06-08 03:03:02 +00:00
2 changed files with 20 additions and 20 deletions

View File

@@ -8,13 +8,13 @@ import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import { CheckCircle } from "lucide-react";
const globalNavItems = [
{ name: "Services", id: "/#services" },
{ name: "About", id: "/#about" },
{ name: "Solutions", id: "/#solutions" },
{ name: "About Us", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/#contact" },
{ name: "Products", id: "/products" },
{ name: "Place Order", id: "/order" }
{ name: "Shop", id: "/products" },
{ name: "Get a Quote", id: "/order" }
];
export default function OrderConfirmationPage() {
@@ -34,17 +34,17 @@ export default function OrderConfirmationPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="AirPro HVAC"
brandName="Star Cam"
navItems={globalNavItems}
button={{ text: "Chat on WhatsApp", href: "https://wa.me/message/ICLIEAFVM43DG1" }}
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={[

View File

@@ -9,13 +9,13 @@ import ContactForm from "@/components/form/ContactForm";
import { useRouter } from "next/navigation";
const globalNavItems = [
{ name: "Services", id: "/#services" },
{ name: "About", id: "/#about" },
{ name: "Solutions", id: "/#solutions" },
{ name: "About Us", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/#contact" },
{ name: "Products", id: "/products" },
{ name: "Place Order", id: "/order" }
{ name: "Shop", id: "/products" },
{ name: "Get a Quote", id: "/order" }
];
export default function OrderPage() {
@@ -45,22 +45,22 @@ export default function OrderPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="AirPro HVAC"
brandName="Star Cam"
navItems={globalNavItems}
button={{ text: "Chat on WhatsApp", href: "https://wa.me/message/ICLIEAFVM43DG1" }}
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}