9 Commits

Author SHA1 Message Date
6b0404a102 Merge version_3 into main
Merge version_3 into main
2026-03-05 06:47:15 +00:00
a57c73bcb2 Update src/app/page.tsx 2026-03-05 06:47:11 +00:00
0a4ea3d176 Update src/app/layout.tsx 2026-03-05 06:47:10 +00:00
aa4c75cff1 Merge version_2 into main
Merge version_2 into main
2026-03-05 05:49:02 +00:00
01d202936d Update src/app/page.tsx 2026-03-05 05:48:52 +00:00
5cba8df8eb Update src/app/layout.tsx 2026-03-05 05:48:51 +00:00
8b13bb08c7 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:43:36 +00:00
748f8e37ea Merge version_1 into main
Merge version_1 into main
2026-03-04 11:42:35 +00:00
955406e7e4 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:41:11 +00:00
2 changed files with 12 additions and 46 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

@@ -79,9 +79,10 @@ export default function LandingPage() {
<div id="about" data-section="about">
<TextAbout
tag="About Surya Garden"
title="Authentic Punjabi flavors in a welcoming garden environment. We serve fresh, quality ingredients with care for every family that walks through our doors."
title="Authentic Punjabi flavors, garden ambiance, and warm hospitality. We serve fresh, quality ingredients with care for every family that walks through our doors."
buttons={[
{ text: "View Location", href: "https://maps.google.com/maps?q=Surya+Garden+Restaurant+Botad" }
{ text: "View Location", href: "https://maps.google.com/maps?q=Surya+Garden+Restaurant+Botad" },
{ text: "View Menu", href: "#menu" }
]}
useInvertedBackground={false}
/>
@@ -209,7 +210,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"
@@ -225,4 +226,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}