|
|
|
|
@@ -1,54 +1,25 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Libre_Baskerville } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import localFont from "next/font/local";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const libreBaskerville = Libre_Baskerville({
|
|
|
|
|
variable: "--font-libre-baskerville", subsets: ["latin"],
|
|
|
|
|
weight: ["400", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const geistSans = localFont({
|
|
|
|
|
src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
|
|
|
|
|
const geistMono = localFont({
|
|
|
|
|
src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Masala Kitchen - Authentic Indian & Chinese Cuisine", description: "Experience authentic Indian and Chinese food at Masala Kitchen. Premium vegetarian, non-vegetarian dishes and Asian specialties. Order online or visit us today!", keywords: "Indian restaurant, Chinese food, Indian cuisine, vegetarian, non-vegetarian, biryani, butter chicken, chow mein, authentic flavors", metadataBase: new URL("https://maslakitchen.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://maslakitchen.com"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Masala Kitchen - Authentic Indian & Chinese Restaurant", description: "Taste authentic Indian delicacies and delicious Chinese cuisine prepared with finest ingredients. Order online or make a reservation.", url: "https://maslakitchen.com", siteName: "Masala Kitchen", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/indian-butter-chicken-black-bowl-wooden-table_123827-20634.jpg", alt: "Masala Kitchen - Authentic Indian & Chinese Food"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Masala Kitchen - Indian & Chinese Food", description: "Experience authentic flavors with our premium Indian and Chinese cuisine.", images: ["http://img.b2bpic.net/free-photo/indian-butter-chicken-black-bowl-wooden-table_123827-20634.jpg"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "Masala Kitchen - Authentic Indian & Chinese Cuisine", description: "Experience authentic Indian delicacies and delicious Chinese cuisine prepared with the finest ingredients and traditional recipes."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1416,7 +1387,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|