|
|
|
|
@@ -1,54 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Libre_Baskerville } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
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 inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Surya Garden Restaurant - Best Punjabi Food in Botad, Gujarat", description: "Authentic North Indian & Punjabi cuisine with garden dining experience in Botad. 4.2★ rated. Dine-in, takeaway, catering & celebrations. Open till 11:30 PM.", keywords: "best restaurant Botad, Punjabi restaurant Botad, garden restaurant Botad, family restaurant Botad, North Indian food Botad, authentic Punjabi cuisine, paneer tikka masala Botad", robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
},
|
|
|
|
|
metadataBase: new URL("https://suryagarden.local"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://suryagarden.local"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Surya Garden Restaurant - Authentic Punjabi Dining in Botad", description: "Experience authentic Punjabi food in our beautiful garden setting. 4.2★ rating, 766+ happy customers.", url: "https://suryagarden.local", siteName: "Surya Garden Restaurant", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/friends-eating-restaurant_23-2147680645.jpg", alt: "Surya Garden Restaurant Garden Dining"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Surya Garden Restaurant - Best Punjabi Food in Botad", description: "Authentic North Indian cuisine with garden dining. Book your table now!", images: ["http://img.b2bpic.net/free-photo/friends-eating-restaurant_23-2147680645.jpg"]
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "Surya Garden Restaurant", description: "Best Punjabi & Garden Dining Experience in Botad"};
|
|
|
|
|
|
|
|
|
|
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={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|