Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 05:49:02 +00:00
2 changed files with 7 additions and 42 deletions

View File

@@ -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>
);
}

View File

@@ -209,7 +209,7 @@ export default function LandingPage() {
]}
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."
ctaButton={{ text: "📞 Call Now: +91 XXXXXXXXXX", href: "tel:+919876543210" }}
ctaButton={{ text: "Book Your Table Now", href: "tel:+919876543210" }}
ctaIcon={Phone}
useInvertedBackground={false}
animationType="slide-up"