Update src/app/layout.tsx
This commit is contained in:
@@ -1,50 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Mouli's Bistro - Best Burgers, Mojitos & Milkshakes in Tondiarpet", description: "Delicious bistro treats in Tondiarpet, Chennai. Fresh burgers, fries, mojitos, milkshakes & ice creams. Open 11 AM - 10 PM. Call 98419 97448 to order.", keywords: "bistro tondiarpet, restaurant chennai, burgers tondiarpet, mojitos chennai, milkshakes near washermenpet, affordable restaurant, casual dining", metadataBase: new URL("https://example.com"),
|
||||
openGraph: {
|
||||
title: "Mouli's Bistro - Fresh Food & Drinks", description: "Experience delicious bistro treats - burgers, mojitos, milkshakes, and more at Mouli's Bistro in Tondiarpet.", siteName: "Mouli's Bistro", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWpQ6Dsy1MmPLXT39nMif1ZpHT/uploaded-1772718184795-3bvre1om.jpg", alt: "Mouli's Bistro signature drink"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Mouli's Bistro - Best Burgers & Mojitos in Tondiarpet", description: "Fresh, delicious food and drinks. Call 98419 97448 to order.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWpQ6Dsy1MmPLXT39nMif1ZpHT/uploaded-1772718184795-3bvre1om.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Mouli's Bistro - Fresh Food, Great Mood", description: "Delicious bistro treats in Tondiarpet. Fresh burgers, crispy fries, mojitos, and milkshakes."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user