Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-19 03:53:54 +00:00
4 changed files with 67 additions and 27 deletions

View File

@@ -85,21 +85,21 @@ export default function AboutPage() {
id: "deluxe-room", id: "deluxe-room",
name: "Deluxe Ocean View Suite", name: "Deluxe Ocean View Suite",
price: "$299/night", price: "$299/night",
imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-blanket-bed-with-light-lamp_74190-12078.jpg", imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-blanket-bed-with-light-lamp_74190-12078.jpg?_wi=4",
imageAlt: "Luxurious Deluxe Ocean View Suite with Modern Furnishings", imageAlt: "Luxurious Deluxe Ocean View Suite with Modern Furnishings",
}, },
{ {
id: "presidential-suite", id: "presidential-suite",
name: "Presidential Suite", name: "Presidential Suite",
price: "$599/night", price: "$599/night",
imageSrc: "http://img.b2bpic.net/free-photo/wide-view-dining-hall-classic-design_114579-2224.jpg", imageSrc: "http://img.b2bpic.net/free-photo/wide-view-dining-hall-classic-design_114579-2224.jpg?_wi=3",
imageAlt: "Exclusive Presidential Suite with Premium Amenities", imageAlt: "Exclusive Presidential Suite with Premium Amenities",
}, },
{ {
id: "garden-villa", id: "garden-villa",
name: "Garden Villa", name: "Garden Villa",
price: "$449/night", price: "$449/night",
imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool_1203-3569.jpg", imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool_1203-3569.jpg?_wi=3",
imageAlt: "Private Garden Villa with Spectacular Outdoor Space", imageAlt: "Private Garden Villa with Spectacular Outdoor Space",
}, },
]} ]}
@@ -122,28 +122,28 @@ export default function AboutPage() {
value: "50K+", value: "50K+",
title: "Happy Guests", title: "Happy Guests",
description: "Satisfied travelers from over 120 countries", description: "Satisfied travelers from over 120 countries",
imageSrc: "http://img.b2bpic.net/free-photo/happy-friends-taking-selfie-outdoors-medium-shot_23-2149003040.jpg", imageSrc: "http://img.b2bpic.net/free-photo/happy-friends-taking-selfie-outdoors-medium-shot_23-2149003040.jpg?_wi=2",
}, },
{ {
id: "years", id: "years",
value: "15", value: "15",
title: "Years Excellence", title: "Years Excellence",
description: "Operating at the highest hospitality standards", description: "Operating at the highest hospitality standards",
imageSrc: "http://img.b2bpic.net/free-photo/sunny-urban-landscape_23-2149504755.jpg", imageSrc: "http://img.b2bpic.net/free-photo/sunny-urban-landscape_23-2149504755.jpg?_wi=2",
}, },
{ {
id: "rooms", id: "rooms",
value: "250+", value: "250+",
title: "Premium Rooms", title: "Premium Rooms",
description: "Luxury accommodations across all categories", description: "Luxury accommodations across all categories",
imageSrc: "http://img.b2bpic.net/free-photo/pillow-bed_1203-9520.jpg", imageSrc: "http://img.b2bpic.net/free-photo/pillow-bed_1203-9520.jpg?_wi=2",
}, },
{ {
id: "rating", id: "rating",
value: "4.9/5", value: "4.9/5",
title: "Guest Rating", title: "Guest Rating",
description: "Consistently excellent reviews and feedback", description: "Consistently excellent reviews and feedback",
imageSrc: "http://img.b2bpic.net/free-photo/receptionists-elegant-suits-work-hours_23-2149714442.jpg", imageSrc: "http://img.b2bpic.net/free-photo/receptionists-elegant-suits-work-hours_23-2149714442.jpg?_wi=2",
}, },
]} ]}
/> />

View File

@@ -1,29 +1,67 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
export const metadata: Metadata = { variable: "--font-inter",
title: "Webild components 2", subsets: ["latin"],
description: "Generated by create next app", });
};
const manrope = Manrope({ const manrope = Manrope({
variable: "--font-manrope", variable: "--font-manrope",
subsets: ["latin"], subsets: ["latin"],
}); });
const dmSans = DM_Sans({ const dmSans = DM_Sans({
variable: "--font-dm-sans", variable: "--font-dm-sans",
subsets: ["latin"], subsets: ["latin"],
}); });
export const metadata: Metadata = {
title: "Luxe Haven - Luxury 5-Star Hotel Booking | Premium Accommodations",
description: "Book your luxury stay at Luxe Haven. Experience award-winning 5-star hospitality with stunning rooms, world-class amenities, and exceptional service. Premium hotel accommodations worldwide.",
keywords: "luxury hotel booking, 5-star resort, premium accommodations, hotel reservations, luxury getaway, fine dining hotel, spa resort, luxury vacation",
metadataBase: new URL("https://luxehavenhotels.com"),
alternates: {
canonical: "https://luxehavenhotels.com",
},
openGraph: {
title: "Luxe Haven - Premium 5-Star Hotel Experience",
description: "Discover luxury redefined. Book your dream stay at Luxe Haven with stunning 3D virtual tours, exclusive amenities, and world-class service.",
url: "https://luxehavenhotels.com",
siteName: "Luxe Haven",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/modern-styled-small-entryway_23-2150712925.jpg",
alt: "Luxe Haven Premium Hotel Lobby",
},
],
},
twitter: {
card: "summary_large_image",
title: "Luxe Haven - Your Luxury Hotel Destination",
description: "Experience premium hospitality at Luxe Haven. Book luxury rooms, enjoy world-class amenities, and create unforgettable memories.",
images: ["http://img.b2bpic.net/free-photo/modern-styled-small-entryway_23-2150712925.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: Readonly<{
@@ -32,7 +70,9 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}> <body
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -130,21 +130,21 @@ export default function HomePage() {
id: "deluxe-room", id: "deluxe-room",
name: "Deluxe Ocean View Suite", name: "Deluxe Ocean View Suite",
price: "$299/night", price: "$299/night",
imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-blanket-bed-with-light-lamp_74190-12078.jpg", imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-blanket-bed-with-light-lamp_74190-12078.jpg?_wi=1",
imageAlt: "Luxurious Deluxe Ocean View Suite with Modern Furnishings", imageAlt: "Luxurious Deluxe Ocean View Suite with Modern Furnishings",
}, },
{ {
id: "presidential-suite", id: "presidential-suite",
name: "Presidential Suite", name: "Presidential Suite",
price: "$599/night", price: "$599/night",
imageSrc: "http://img.b2bpic.net/free-photo/wide-view-dining-hall-classic-design_114579-2224.jpg", imageSrc: "http://img.b2bpic.net/free-photo/wide-view-dining-hall-classic-design_114579-2224.jpg?_wi=1",
imageAlt: "Exclusive Presidential Suite with Premium Amenities", imageAlt: "Exclusive Presidential Suite with Premium Amenities",
}, },
{ {
id: "garden-villa", id: "garden-villa",
name: "Garden Villa", name: "Garden Villa",
price: "$449/night", price: "$449/night",
imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool_1203-3569.jpg", imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool_1203-3569.jpg?_wi=1",
imageAlt: "Private Garden Villa with Spectacular Outdoor Space", imageAlt: "Private Garden Villa with Spectacular Outdoor Space",
}, },
]} ]}
@@ -278,28 +278,28 @@ export default function HomePage() {
value: "50K+", value: "50K+",
title: "Happy Guests", title: "Happy Guests",
description: "Satisfied travelers from over 120 countries", description: "Satisfied travelers from over 120 countries",
imageSrc: "http://img.b2bpic.net/free-photo/happy-friends-taking-selfie-outdoors-medium-shot_23-2149003040.jpg", imageSrc: "http://img.b2bpic.net/free-photo/happy-friends-taking-selfie-outdoors-medium-shot_23-2149003040.jpg?_wi=1",
}, },
{ {
id: "years", id: "years",
value: "15", value: "15",
title: "Years Excellence", title: "Years Excellence",
description: "Operating at the highest hospitality standards", description: "Operating at the highest hospitality standards",
imageSrc: "http://img.b2bpic.net/free-photo/sunny-urban-landscape_23-2149504755.jpg", imageSrc: "http://img.b2bpic.net/free-photo/sunny-urban-landscape_23-2149504755.jpg?_wi=1",
}, },
{ {
id: "rooms", id: "rooms",
value: "250+", value: "250+",
title: "Premium Rooms", title: "Premium Rooms",
description: "Luxury accommodations across all categories", description: "Luxury accommodations across all categories",
imageSrc: "http://img.b2bpic.net/free-photo/pillow-bed_1203-9520.jpg", imageSrc: "http://img.b2bpic.net/free-photo/pillow-bed_1203-9520.jpg?_wi=1",
}, },
{ {
id: "rating", id: "rating",
value: "4.9/5", value: "4.9/5",
title: "Guest Rating", title: "Guest Rating",
description: "Consistently excellent reviews and feedback", description: "Consistently excellent reviews and feedback",
imageSrc: "http://img.b2bpic.net/free-photo/receptionists-elegant-suits-work-hours_23-2149714442.jpg", imageSrc: "http://img.b2bpic.net/free-photo/receptionists-elegant-suits-work-hours_23-2149714442.jpg?_wi=1",
}, },
]} ]}
/> />

View File

@@ -75,28 +75,28 @@ export default function RoomsPage() {
id: "deluxe-room", id: "deluxe-room",
name: "Deluxe Ocean View Suite", name: "Deluxe Ocean View Suite",
price: "$299/night", price: "$299/night",
imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-blanket-bed-with-light-lamp_74190-12078.jpg", imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-blanket-bed-with-light-lamp_74190-12078.jpg?_wi=2",
imageAlt: "Luxurious Deluxe Ocean View Suite with Modern Furnishings", imageAlt: "Luxurious Deluxe Ocean View Suite with Modern Furnishings",
}, },
{ {
id: "presidential-suite", id: "presidential-suite",
name: "Presidential Suite", name: "Presidential Suite",
price: "$599/night", price: "$599/night",
imageSrc: "http://img.b2bpic.net/free-photo/wide-view-dining-hall-classic-design_114579-2224.jpg", imageSrc: "http://img.b2bpic.net/free-photo/wide-view-dining-hall-classic-design_114579-2224.jpg?_wi=2",
imageAlt: "Exclusive Presidential Suite with Premium Amenities", imageAlt: "Exclusive Presidential Suite with Premium Amenities",
}, },
{ {
id: "garden-villa", id: "garden-villa",
name: "Garden Villa", name: "Garden Villa",
price: "$449/night", price: "$449/night",
imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool_1203-3569.jpg", imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool_1203-3569.jpg?_wi=2",
imageAlt: "Private Garden Villa with Spectacular Outdoor Space", imageAlt: "Private Garden Villa with Spectacular Outdoor Space",
}, },
{ {
id: "standard-room", id: "standard-room",
name: "Classic Room", name: "Classic Room",
price: "$199/night", price: "$199/night",
imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-blanket-bed-with-light-lamp_74190-12078.jpg", imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-blanket-bed-with-light-lamp_74190-12078.jpg?_wi=3",
imageAlt: "Comfortable Classic Room with Modern Decor", imageAlt: "Comfortable Classic Room with Modern Decor",
}, },
]} ]}