82 lines
2.5 KiB
TypeScript
82 lines
2.5 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import { Lato } from "next/font/google";
|
|
import "./globals.css";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const lato = Lato({
|
|
variable: "--font-lato",
|
|
subsets: ["latin"],
|
|
weight: ["100", "300", "400", "700", "900"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Meridien Hotel — Luxury Stays, Fine Dining & Events in Gujranwala",
|
|
description: "Experience timeless luxury at Meridien Hotel in Gujranwala. Book luxury rooms, reserve fine dining, or host unforgettable events. Rated 4.3 by 1,700+ guests.",
|
|
keywords: "luxury hotel Gujranwala, 5-star rooms, fine dining restaurant, wedding venue, corporate events, event hall",
|
|
metadataBase: new URL("https://meridienhotel.pk"),
|
|
alternates: {
|
|
canonical: "https://meridienhotel.pk",
|
|
},
|
|
openGraph: {
|
|
title: "Meridien Hotel — Luxury Hospitality in Gujranwala",
|
|
description: "Discover luxury rooms, exceptional dining, and unforgettable events at Meridien Hotel on GT Road, Gujranwala.",
|
|
url: "https://meridienhotel.pk",
|
|
siteName: "Meridien Hotel",
|
|
type: "website",
|
|
images: [
|
|
{
|
|
url: "http://img.b2bpic.net/free-photo/blue-sea-water-summer-silhouette_1203-3871.jpg",
|
|
alt: "Meridien Hotel Luxury Exterior",
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "Meridien Hotel — Luxury Stays in Gujranwala",
|
|
description: "Book luxury rooms, fine dining, and host events at Meridien Hotel.",
|
|
images: ["http://img.b2bpic.net/free-photo/blue-sea-water-summer-silhouette_1203-3871.jpg"],
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |