Merge version_2 into main #4
@@ -1,51 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Figtree } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const figtree = Figtree({
|
||||
variable: "--font-figtree", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Hotel 88 Bekasi | Luxury Accommodation & Premium Hospitality", description: "Experience luxury and comfort at Hotel 88 Bekasi. Discover our premium rooms, world-class amenities, and exceptional hospitality in the heart of Bekasi.", keywords: "hotel bekasi, luxury accommodation, premium rooms, hospitality, business hotel, leisure hotel", metadataBase: new URL("https://hotel88bekasi.com"),
|
||||
openGraph: {
|
||||
title: "Hotel 88 Bekasi | Your Perfect Getaway", description: "Book your stay at Hotel 88 Bekasi for an unforgettable experience with luxury rooms and premium amenities.", siteName: "Hotel 88 Bekasi", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg", alt: "Hotel 88 Bekasi - Luxury Accommodation"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Hotel 88 Bekasi | Luxury Accommodation", description: "Experience premium hospitality at Hotel 88 Bekasi with luxury rooms and world-class amenities.", images: ["http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Hotel 88 Bekasi", description: "Experience luxury and comfort in the heart of Bekasi"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -195,7 +195,7 @@ export default function LandingPage() {
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Reserve Now"
|
||||
buttonText="Book Room"
|
||||
termsText="By booking, you agree to our cancellation policy and terms of service."
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user