74 lines
2.3 KiB
TypeScript
74 lines
2.3 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 { Mulish } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Spice & Soul - Fine Indian Dining',
|
|
description: 'Experience the finest blend of authentic Indian flavors and modern culinary artistry at Spice & Soul. Reserve your table for an unforgettable dining journey.',
|
|
keywords: ["Indian restaurant, fine dining, Indian cuisine, Mumbai, gourmet, reservations, Spice & Soul"],
|
|
openGraph: {
|
|
"title": "Spice & Soul - Where Tradition Meets Taste",
|
|
"description": "Experience the finest blend of authentic Indian flavors and modern culinary artistry in an atmosphere of timeless elegance.",
|
|
"url": "https://spiceandsoul.com",
|
|
"siteName": "Spice & Soul",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/young-man-picks-food-plate-party_1321-1049.jpg",
|
|
"alt": "Chef preparing food"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "Spice & Soul - Where Tradition Meets Taste",
|
|
"description": "Experience the finest blend of authentic Indian flavors and modern culinary artistry in an atmosphere of timeless elegance.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/young-man-picks-food-plate-party_1321-1049.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const mulish = Mulish({
|
|
variable: "--font-mulish",
|
|
subsets: ["latin"],
|
|
});
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|