diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fb3bd9c..c857389 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +