Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9a0a411708 | |||
| a3a4337310 | |||
| 2650212857 | |||
| d3ed38a0fd | |||
| b7d123531c |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user