74 lines
2.3 KiB
TypeScript
74 lines
2.3 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Montserrat } from "next/font/google";
|
|
import { Inter } 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 montserrat = Montserrat({
|
|
variable: "--font-montserrat",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Sufrah Dine Restaurant | Premium Steaks & Seafood Rawalpindi",
|
|
description: "Award-winning restaurant on Food Street offering premium steaks, fresh seafood, and authentic cuisine. Reserve your table or order online. Open 1 PM daily.",
|
|
keywords: "restaurant Rawalpindi, premium steaks, seafood restaurant, Pakistani cuisine, Food Street Bahria Town, dining reservations",
|
|
openGraph: {
|
|
title: "Sufrah Dine - Premium Restaurant in Rawalpindi",
|
|
description: "Experience authentic Pakistani cuisine with premium steaks and fresh seafood. Located on Food Street, Phase 7 Bahria Town.",
|
|
type: "website",
|
|
siteName: "Sufrah Dine Restaurant",
|
|
images: [
|
|
{
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AsUzC6wbDcMcLn1VHmpXzIGAgA/uploaded-1773381166350-9gkp30ep.png",
|
|
alt: "Sufrah Dine Logo",
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "Sufrah Dine Restaurant",
|
|
description: "Premium steaks and fresh seafood in Rawalpindi",
|
|
images: [
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=deihvw",
|
|
],
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${montserrat.variable} ${inter.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |