Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-04 13:39:44 +00:00
2 changed files with 15 additions and 30 deletions

View File

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

View File

@@ -107,6 +107,9 @@ export default function LandingPage() {
{ icon: Star, label: "Average Rating", value: "4.2/5" },
]}
metricsAnimation="opacity"
buttons={[
{ text: "See What Our Guests Say", href: "#social-proof" }
]}
/>
</div>