From e16d92fb623819ec62b5f1c1ff6bc4a95671873f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 11:07:42 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 58 +++++++++++----------------------------------- 1 file changed, 13 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f18a8b6..0deefd7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}