5 Commits

Author SHA1 Message Date
b1d8045e99 Merge version_10 into main
Merge version_10 into main
2026-06-12 05:03:14 +00:00
28b0fd9ba1 Update src/app/booking/page.tsx 2026-06-12 05:03:11 +00:00
c8b85f8e11 Merge version_10 into main
Merge version_10 into main
2026-06-12 05:02:45 +00:00
b903346a54 Update src/app/booking/page.tsx 2026-06-12 05:02:39 +00:00
77ae2ee109 Merge version_9 into main
Merge version_9 into main
2026-06-07 00:49:02 +00:00

View File

@@ -2,9 +2,9 @@
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import TextBox from '@/components/Textbox';
export default function BookingPage() { export default function BookingPage() {
const navItems = [ const navItems = [
@@ -36,19 +36,24 @@ export default function BookingPage() {
logoClassName="!w-64" logoClassName="!w-64"
/> />
<div id="booking" data-section="booking" className="py-20 lg:py-32"> <div id="booking" data-section="booking" className="py-20 lg:py-32">
<ContactText <TextBox
text="Schedule your consultation with RVNCO. Let's discuss your luxury design and build project." title="Schedule Your Consultation"
background={{ variant: "plain" }} description="Choose a convenient date and time to discuss your luxury design and build project with RVNCO."
useInvertedBackground={false} textboxLayout="default"
center={true}
buttons={[ buttons={[
{ text: "Proceed to Booking System", href: "https://example.com/booking" },
{ text: "Back to Home", href: "/" } { text: "Back to Home", href: "/" }
]} ]}
className="text-center" className="text-center max-w-4xl mx-auto px-4"
containerClassName="max-w-4xl mx-auto px-4" titleClassName="text-3xl lg:text-5xl font-bold mb-4"
textClassName="text-3xl lg:text-5xl font-bold mb-8" descriptionClassName="text-lg mb-8"
buttonContainerClassName="flex justify-center flex-wrap gap-4" buttonContainerClassName="flex justify-center flex-wrap gap-4"
/> >
{/* Placeholder for calendar and time slot picker */}
<div className="mt-8 p-6 bg-card border border-accent rounded-lg shadow-inner flex items-center justify-center h-64 text-foreground/70 text-center">
Calendar & Time Slot Picker Here (Integration Placeholder)
</div>
</TextBox>
</div> </div>
<FooterLogoEmphasis <FooterLogoEmphasis
logoText="RVNCO" logoText="RVNCO"