Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b98f19988f | |||
| 5954220c19 | |||
| ad1a61025a | |||
| 573207380e | |||
| 76e5380b23 | |||
| 73e975bfb1 | |||
| 7bdc197a99 | |||
| 5276ef3773 | |||
| e1a96a7740 |
73
src/app/booking/page.tsx
Normal file
73
src/app/booking/page.tsx
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
|
||||||
|
export default function BookingPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="shift-hover"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="soft"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "/#about" },
|
||||||
|
{ name: "Features", id: "/#features" },
|
||||||
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
|
{ name: "FAQ", id: "/#faq" },
|
||||||
|
{ name: "Booking", id: "/booking" },
|
||||||
|
]}
|
||||||
|
brandName="LuxuryEstate"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="booking-form" data-section="booking-form">
|
||||||
|
<ContactSplit
|
||||||
|
tag="Reservations"
|
||||||
|
title="Book Your Stay"
|
||||||
|
description="Secure your dates for an unforgettable luxury experience at our estate. Fill in your details below to begin the reservation process."
|
||||||
|
inputPlaceholder="Enter your email for booking confirmation"
|
||||||
|
buttonText="Submit Booking Request"
|
||||||
|
termsText="By clicking Submit you agree to our booking policies and cancellation terms."
|
||||||
|
background={{ variant: 'plain' }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBaseReveal
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Estate", items: [
|
||||||
|
{ label: "About", href: "/#about" },
|
||||||
|
{ label: "Features", href: "/#features" },
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy Policy", href: "#" },
|
||||||
|
{ label: "Terms of Service", href: "#" },
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
copyrightText="© 2024 LuxuryEstate. All rights reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -34,6 +34,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
|
{ name: "Booking", id: "/booking" },
|
||||||
]}
|
]}
|
||||||
brandName="LuxuryEstate"
|
brandName="LuxuryEstate"
|
||||||
/>
|
/>
|
||||||
|
|||||||
71
src/app/rooms/page.tsx
Normal file
71
src/app/rooms/page.tsx
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
||||||
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
|
import { Star, ShieldCheck, Zap } from "lucide-react";
|
||||||
|
|
||||||
|
export default function RoomsPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="shift-hover"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="soft"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Rooms", id: "/rooms" },
|
||||||
|
{ name: "About", id: "/#about" },
|
||||||
|
]}
|
||||||
|
brandName="LuxuryEstate"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="rooms" data-section="rooms">
|
||||||
|
<FeatureCardNineteen
|
||||||
|
title="Our Exclusive Suites"
|
||||||
|
description="Select your sanctuary from our collection of ten bespoke suites, each uniquely designed for comfort."
|
||||||
|
textboxLayout="split-description"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
tag: "Starting at $1,200/night", title: "Royal Master Suite", subtitle: "Maximum Luxury", description: "Features a king-sized bed, panoramic ocean views, and a private wraparound terrace.", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-with-modern-furniture_1203-2415.jpg", buttons: [{ text: "Book Now", href: "#" }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
tag: "Starting at $850/night", title: "Garden View Junior Suite", subtitle: "Tranquil Escape", description: "Overlooking our lush private gardens, this suite offers a serene retreat with natural light.", imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-open-balcony-soft-light-through-curtains-cozy-bedroom_169016-70022.jpg", buttons: [{ text: "Book Now", href: "#" }]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
tag: "Starting at $950/night", title: "Poolside Retreat", subtitle: "Resort Experience", description: "Direct access to the swimming pool area with contemporary decor and high-end tech amenities.", imageSrc: "http://img.b2bpic.net/free-photo/modern-bedroom-with-comfortable-bed-and-large-windows_1203-2426.jpg", buttons: [{ text: "Book Now", href: "#" }]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBaseReveal
|
||||||
|
columns={[
|
||||||
|
{ title: "Estate", items: [{ label: "Home", href: "/" }, { label: "Rooms", href: "/rooms" }] },
|
||||||
|
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
|
||||||
|
]}
|
||||||
|
copyrightText="© 2024 LuxuryEstate. All rights reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user