Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 11:07:47 +00:00
2 changed files with 17 additions and 49 deletions

View File

@@ -1,58 +1,27 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: "Saroikhana - Authentic Bengali Cuisine in Gazipur", description: "Experience authentic Bengali dining at Saroikhana in Gazipur. Famous for Chicken Chap, biryani, and more. Open daily, all-you-can-eat available. Call 01322-662406 to reserve.", keywords: "bengali restaurant gazipur, authentic cuisine, chicken chap, biryani, dining gazipur", metadataBase: new URL("https://saroikhana-gazipur.com"),
alternates: {
canonical: "https://saroikhana-gazipur.com"},
title: 'Saroikhana - Authentic Bengali Cuisine in Gazipur',
description: 'Experience authentic Bengali cuisine at Saroikhana. Located in Gazipur, we serve traditional and fusion dishes crafted with passion and premium ingredients.',
openGraph: {
title: "Saroikhana - Authentic Bengali Cuisine", description: "Join us for an unforgettable dining experience featuring authentic Bengali dishes and warm hospitality.", url: "https://saroikhana-gazipur.com", siteName: "Saroikhana", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg", alt: "bangladeshi restaurant dining ambiance warm interior"},
],
},
twitter: {
card: "summary_large_image", title: "Saroikhana - Authentic Bengali Cuisine", description: "Experience authentic Bengali dining in Gazipur. Famous for Chicken Chap, biryani, and exceptional service.", images: ["http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg"],
},
robots: {
index: true,
follow: true,
title: 'Saroikhana - Authentic Bengali Cuisine',
description: 'Discover the best authentic Bengali dining experience in Gazipur',
type: 'website',
},
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1389,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -65,7 +65,7 @@ export default function LandingPage() {
]}
testimonialRotationInterval={5000}
buttons={[
{ text: "Reserve Now", href: "#contact" },
{ text: "Reserve Your Table", href: "#contact" },
{ text: "View Menu", href: "#menu" }
]}
buttonAnimation="blur-reveal"
@@ -178,17 +178,17 @@ export default function LandingPage() {
useInvertedBackground={false}
plans={[
{
id: "budget", title: "Quick Bite", price: "৳200", period: "per person", imageSrc: "http://img.b2bpic.net/free-photo/close-up-sauce-chicken-nuggets_23-2147765501.jpg?_wi=3", imageAlt: "Quick Bite Package", button: { text: "Reserve Now", href: "#contact" }, features: [
id: "budget", title: "Quick Bite", price: "৳200", period: "per person", imageSrc: "http://img.b2bpic.net/free-photo/close-up-sauce-chicken-nuggets_23-2147765501.jpg?_wi=3", imageAlt: "Quick Bite Package", button: { text: "Reserve Your Table", href: "#contact" }, features: [
"Single main dish", "Beverage included", "Casual seating", "Perfect for lunch"
]
},
{
id: "standard", title: "Signature Meal", price: "৳300", period: "per person", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pakistan-dish-composition_23-2148821519.jpg?_wi=3", imageAlt: "Signature Meal Package", button: { text: "Reserve Now", href: "#contact" }, features: [
id: "standard", title: "Signature Meal", price: "৳300", period: "per person", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pakistan-dish-composition_23-2148821519.jpg?_wi=3", imageAlt: "Signature Meal Package", button: { text: "Reserve Your Table", href: "#contact" }, features: [
"Appetizer + Main dish", "Beverage included", "Dessert option", "Prime seating available"
]
},
{
id: "premium", title: "All-You-Can-Eat", price: "৳400", period: "per person", imageSrc: "http://img.b2bpic.net/free-photo/various-cooked-pasta-earthenware-with-folded-napkin-wooden-table_23-2147926031.jpg?_wi=2", imageAlt: "All-You-Can-Eat Package", button: { text: "Reserve Now", href: "#contact" }, features: [
id: "premium", title: "All-You-Can-Eat", price: "৳400", period: "per person", imageSrc: "http://img.b2bpic.net/free-photo/various-cooked-pasta-earthenware-with-folded-napkin-wooden-table_23-2147926031.jpg?_wi=2", imageAlt: "All-You-Can-Eat Package", button: { text: "Reserve Your Table", href: "#contact" }, features: [
"Unlimited food selection", "Premium beverages", "Happy hour timing", "Best value experience"
]
}