8 Commits

Author SHA1 Message Date
fe410c6aeb Update src/app/page.tsx 2026-03-04 13:49:50 +00:00
a789543bca Update src/app/page.tsx 2026-03-04 13:48:03 +00:00
79fe6d4ffb Update src/app/page.tsx 2026-03-04 13:41:09 +00:00
6354597636 Update src/app/page.tsx 2026-03-04 13:39:40 +00:00
9b61a61f23 Update src/app/layout.tsx 2026-03-04 13:39:39 +00:00
402d7cfe68 Merge version_1 into main
Merge version_1 into main
2026-03-04 13:34:57 +00:00
2c00e68cb9 Merge version_1 into main
Merge version_1 into main
2026-03-04 13:33:27 +00:00
04cd9e88ab Merge version_1 into main
Merge version_1 into main
2026-03-04 13:28:33 +00:00

View File

@@ -1,45 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } 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 halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
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: "Experience cozy dining at its finest with delicious food, premium coffee, and mouthwatering desserts."};
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" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1407,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }