Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-04-08 04:39:00 +00:00

View File

@@ -28,21 +28,13 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "About",
id: "about",
},
name: "About", id: "about"},
{
name: "Rooms",
id: "rooms",
},
name: "Rooms", id: "rooms"},
{
name: "Location",
id: "location",
},
name: "Location", id: "location"},
{
name: "Contact",
id: "contact",
},
name: "Contact", id: "contact"},
]}
brandName="Taj Place Residency"
/>
@@ -54,32 +46,20 @@ export default function LandingPage() {
description="Experience comfort just steps away from the beautiful Pattaya Beach."
buttons={[
{
text: "Book Now",
href: "#contact",
},
text: "Book Now", href: "#contact"},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C3mAADLbgl1WZAC16lzZer4OG7/uploaded-1775622759383-dq5094ez.jpg"
avatars={[
{
src: "https://img.freepik.com/free-photo/young-happy-woman-holding-passport-boarding-pass-smiling-excited-isolated-white-background_231208-1246.jpg",
alt: "Guest 1",
},
src: "https://img.freepik.com/free-photo/young-happy-woman-holding-passport-boarding-pass-smiling-excited-isolated-white-background_231208-1246.jpg", alt: "Guest 1"},
{
src: "https://img.freepik.com/free-photo/handsome-young-man-with-crossed-arms_23-2148222620.jpg",
alt: "Guest 2",
},
src: "https://img.freepik.com/free-photo/handsome-young-man-with-crossed-arms_23-2148222620.jpg", alt: "Guest 2"},
{
src: "https://img.freepik.com/free-photo/portrait-smiling-young-woman-with-long-hair_23-2148301728.jpg",
alt: "Guest 3",
},
src: "https://img.freepik.com/free-photo/portrait-smiling-young-woman-with-long-hair_23-2148301728.jpg", alt: "Guest 3"},
{
src: "https://img.freepik.com/free-photo/young-man-wearing-blue-shirt_23-2148301826.jpg",
alt: "Guest 4",
},
src: "https://img.freepik.com/free-photo/young-man-wearing-blue-shirt_23-2148301826.jpg", alt: "Guest 4"},
{
src: "https://img.freepik.com/free-photo/cheerful-young-woman-standing-against-white-background_23-2148225574.jpg",
alt: "Guest 5",
},
src: "https://img.freepik.com/free-photo/cheerful-young-woman-standing-against-white-background_23-2148225574.jpg", alt: "Guest 5"},
]}
avatarText="Trusted by thousands of happy travelers"
/>
@@ -91,9 +71,7 @@ export default function LandingPage() {
title="Welcome to Taj Place Residency"
buttons={[
{
text: "Explore",
href: "#rooms",
},
text: "Explore", href: "#rooms"},
]}
tag="Our Story"
/>
@@ -107,23 +85,11 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "1",
name: "Standard Room",
price: "1000฿ /night",
imageSrc: "http://img.b2bpic.net/free-photo/white-pillow-bed_74190-2474.jpg",
},
id: "1", name: "Standard Room", price: "1000฿ /night", imageSrc: "http://img.b2bpic.net/free-photo/white-pillow-bed_74190-2474.jpg"},
{
id: "2",
name: "Deluxe Room",
price: "$85/night",
imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111480.jpg",
},
id: "2", name: "Deluxe Room", price: "$85/night", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111480.jpg"},
{
id: "3",
name: "Premium Room",
price: "$120/night",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-comfortable-white-pillow-blanket-decoration-interior-bedroom_74190-12644.jpg",
},
id: "3", name: "Premium Room", price: "$120/night", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-comfortable-white-pillow-blanket-decoration-interior-bedroom_74190-12644.jpg"},
]}
title="Our Accommodations"
description="A variety of room types designed for your comfort and budget."
@@ -142,12 +108,11 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Get in touch"
title="Check Availability"
description="Have questions? Our team is ready to assist you with your booking."
inputPlaceholder="Enter your email address"
inputPlaceholder="+6638416459"
buttonText="Send Inquiry"
/>
</div>
@@ -156,24 +121,15 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Navigation",
items: [
title: "Navigation", items: [
{
label: "About",
href: "#about",
},
label: "About", href: "#about"},
{
label: "Rooms",
href: "#rooms",
},
label: "Rooms", href: "#rooms"},
{
label: "Location",
href: "#location",
},
label: "Location", href: "#location"},
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
],
},
]}
@@ -184,4 +140,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}