Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 05:52:29 +00:00
2 changed files with 7 additions and 42 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Hotel Lavish - Luxury Accommodation & Premium Hospitality", description: "Discover Hotel Lavish: comfortable, affordable luxury rooms with excellent service, convenient location, and world-class amenities for families and travelers.", keywords: "luxury hotel, comfortable rooms, affordable accommodation, premium hospitality, family-friendly hotel, best location", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Hotel Lavish - Your Perfect Stay Awaits", description: "Experience comfort, luxury, and exceptional hospitality at Hotel Lavish. Book now and discover why guests love us.", type: "website", siteName: "Hotel Lavish", images: [
{
url: "http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg", alt: "Hotel Lavish - Luxury Hotel"},
],
},
twitter: {
card: "summary_large_image", title: "Hotel Lavish - Luxury Accommodation", description: "Book your stay at Hotel Lavish. Comfort, luxury, and best location guaranteed.", images: ["http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg"],
},
};
title: "Hotel Lavish - Comfort, Luxury & Best Location", description: "Experience comfort and luxury at Hotel Lavish with clean rooms, excellent hospitality, and convenient location for families and couples."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -42,7 +42,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogo
logoText="HOTEL LAVISH"
description="Comfort • Luxury • Best Location. Welcome to Hotel Lavish, a comfortable and affordable hotel offering clean rooms, excellent hospitality, and a convenient location for both families and couples."
description="Experience comfort, luxury, and hospitality at the best location."
buttons={[
{ text: "Book Now", href: "#contact" },
{ text: "View Rooms", href: "#rooms" },