Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 01d202936d | |||
| 5cba8df8eb | |||
| 8b13bb08c7 | |||
| 748f8e37ea | |||
| 955406e7e4 |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const libreBaskerville = Libre_Baskerville({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
|
||||||
weight: ["400", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: "Surya Garden Restaurant", description: "Best Punjabi & Garden Dining Experience in Botad"};
|
||||||
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"]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -209,7 +209,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
ctaTitle="Book Your Table"
|
ctaTitle="Book Your Table"
|
||||||
ctaDescription="Reserve your spot for a delicious Punjabi dining experience. Call us or fill the form to book your table today. Open until 11:30 PM."
|
ctaDescription="Reserve your spot for a delicious Punjabi dining experience. Call us or fill the form to book your table today. Open until 11:30 PM."
|
||||||
ctaButton={{ text: "📞 Call Now: +91 XXXXXXXXXX", href: "tel:+919876543210" }}
|
ctaButton={{ text: "Book Your Table Now", href: "tel:+919876543210" }}
|
||||||
ctaIcon={Phone}
|
ctaIcon={Phone}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user