Files
d9fa1052-08c8-417f-9330-e9b…/src/app/layout.tsx
2026-03-25 16:08:11 +00:00

69 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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: 'VEERJIS 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": "VEERJIS 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": "VEERJIS 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": "VEERJIS 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>
);
}