Update src/app/layout.tsx
This commit is contained in:
@@ -1,54 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Shri ji Restaurant - Fine Dining in Palwal | Chinese & Indian Cuisine", description: "Experience authentic Indian and Chinese cuisine at Shri ji Restaurant in Palwal. Order online, reserve your table, and enjoy exceptional dining with premium ambience and quality service.", keywords: "restaurant Palwal, Indian Chinese food, fine dining, online food delivery, Momos, Chow Mein, Pizza", openGraph: {
|
||||
title: "Shri ji Restaurant - Premium Dining Experience", description: "Discover culinary excellence at Shri ji Restaurant. Authentic flavors, premium service, and unforgettable dining moments.", siteName: "Shri ji Restaurant", type: "website", url: "http://img.b2bpic.net/free-photo/life-style_1122-1806.jpg", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/life-style_1122-1806.jpg", alt: "Shri ji Restaurant dining ambience"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Shri ji Restaurant - Fine Dining in Palwal", description: "Experience authentic Indian & Chinese cuisine with exceptional service and ambience.", images: ["http://img.b2bpic.net/free-photo/life-style_1122-1806.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Shri ji Restaurant", description: "Experience authentic Indian & Chinese cuisine at Shri ji Restaurant in Palwal"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user