69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
import type { Metadata } from "next";
|
||
import { Halant } from "next/font/google";
|
||
import { Inter } from "next/font/google";
|
||
import "./globals.css";
|
||
import "@/lib/gsap-setup";
|
||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||
import Tag from "@/tag/Tag";
|
||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||
import { Raleway } from "next/font/google";
|
||
|
||
|
||
|
||
export const metadata: Metadata = {
|
||
title: 'VEERJI’S CAFE & RESTAURANT Satna | Delicious Food & Live Music',
|
||
description: 'Experience Satna\'s most loved café with delicious food, soulful live music, and a cozy ambiance. Book a table, order food, or join our unforgettable nights.',
|
||
openGraph: {
|
||
"title": "VEERJI’S CAFE & RESTAURANT Satna | Delicious Food & Live Music",
|
||
"description": "Experience Satna's most loved café with delicious food, soulful live music, and a cozy ambiance. Book a table, order food, or join our unforgettable nights.",
|
||
"url": "https://www.veerjiscafe.com",
|
||
"siteName": "VEERJI’S CAFE & RESTAURANT",
|
||
"images": [
|
||
{
|
||
"url": "http://img.b2bpic.net/free-photo/appointment-restaurant_1098-15080.jpg",
|
||
"alt": "Delicious food and live music at Veerji's Cafe & Restaurant"
|
||
}
|
||
],
|
||
"type": "website"
|
||
},
|
||
twitter: {
|
||
"card": "summary_large_image",
|
||
"title": "VEERJI’S CAFE & RESTAURANT Satna | Delicious Food & Live Music",
|
||
"description": "Experience Satna's most loved café with delicious food, soulful live music, and a cozy ambiance. Book a table, order food, or join our unforgettable nights.",
|
||
"images": [
|
||
"http://img.b2bpic.net/free-photo/appointment-restaurant_1098-15080.jpg"
|
||
]
|
||
},
|
||
robots: {
|
||
"index": true,
|
||
"follow": true
|
||
},
|
||
};
|
||
|
||
const raleway = Raleway({
|
||
variable: "--font-raleway",
|
||
subsets: ["latin"],
|
||
});
|
||
|
||
export default function RootLayout({
|
||
children,
|
||
}: Readonly<{
|
||
children: React.ReactNode;
|
||
}>) {
|
||
return (
|
||
<html lang="en" suppressHydrationWarning>
|
||
<ServiceWrapper>
|
||
<body className={`${raleway.variable} antialiased`}>
|
||
<Tag />
|
||
{children}
|
||
<script
|
||
dangerouslySetInnerHTML={{
|
||
__html: `${getVisualEditScript()}`
|
||
}}
|
||
/>
|
||
</body>
|
||
</ServiceWrapper>
|
||
</html>
|
||
);
|
||
}
|