5 Commits

Author SHA1 Message Date
9a0a411708 Switch to version 1: modified src/app/layout.tsx 2026-03-04 13:51:15 +00:00
a3a4337310 Merge version_2 into main
Merge version_2 into main
2026-03-04 13:49:54 +00:00
2650212857 Merge version_2 into main
Merge version_2 into main
2026-03-04 13:48:13 +00:00
d3ed38a0fd Merge version_2 into main
Merge version_2 into main
2026-03-04 13:41:13 +00:00
b7d123531c Merge version_2 into main
Merge version_2 into main
2026-03-04 13:39:44 +00:00

View File

@@ -1,28 +1,45 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google"; import { Halant } 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 geist = Geist({ const halant = Halant({
variable: "--font-geist-sans", subsets: ["latin"], variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const geistMono = Geist_Mono({ const inter = Inter({
variable: "--font-geist-mono", subsets: ["latin"], variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Bistro C - Cozy Dining Experience", description: "Experience cozy dining at its finest with delicious food, premium coffee, and mouthwatering desserts."}; title: "Bistro C - Cozy Dining & Premium Coffee in Khulna", description: "Experience Bistro C, Khulna's favorite cozy restaurant. Delicious food, premium coffee, and mouthwatering desserts. Open daily 10 AM - 10:30 PM. 4.2★ rated.", keywords: "bistro, restaurant, Khulna, coffee, desserts, dining, cozy cafe, food", openGraph: {
title: "Bistro C - Cozy Dining Experience", description: "Premium coffee, delicious pasta, and mouthwatering desserts await you at Bistro C in Khulna.", siteName: "Bistro C", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg", alt: "Bistro C restaurant interior"},
],
},
twitter: {
card: "summary_large_image", title: "Bistro C - Cozy Dining & Coffee", description: "Your favorite bistro in Khulna. Premium coffee, delicious food, and special moments.", images: ["http://img.b2bpic.net/free-photo/wicker-gray-table-with-glass-gray-chairs_140725-3025.jpg"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: { }: Readonly<{
children: React.ReactNode; children: React.ReactNode;
}) { }>) {
return ( return (
<html lang="en"> <html lang="en" suppressHydrationWarning>
<body className={`${geist.variable} ${geistMono.variable} antialiased`}> <ServiceWrapper>
{children} <body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1390,6 +1407,7 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }