From 9e8349bd5514a43b2095b354c63c19726b22a9f9 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Feb 2026 06:46:05 +0000 Subject: [PATCH 1/6] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 6471b00..d24e3d2 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,7 +29,7 @@ export default function BlogPage() { brandName="Baan Mu" navItems={[ { name: "Home", id: "/" }, - { name: "Menu", id: "products" }, + { name: "Menu", id: "/menu" }, { name: "About", id: "about" }, { name: "Reviews", id: "testimonial" }, { name: "Contact", id: "contact" } @@ -67,4 +67,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From ba73b942f4f407cc28e2fe617d63d52dbc0c2269 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Feb 2026 06:46:06 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++++-------------------------------------- 1 file changed, 8 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f19f06c..edec326 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,24 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Baan Mu - Authentic Thai Restaurant in San Francisco", description: "Discover authentic Thai cuisine at Baan Mu in San Francisco. Fresh ingredients, traditional recipes, and warm hospitality. Reserve your table today.", keywords: "thai restaurant San Francisco, authentic thai food, pad thai, green curry, thai cuisine, fine dining", metadataBase: new URL("https://baanmu.com"), - alternates: { - canonical: "https://baanmu.com" - }, - openGraph: { - title: "Baan Mu - Authentic Thai Restaurant in San Francisco", description: "Experience bold flavors and warm hospitality at Baan Mu. The best Thai restaurant in San Francisco with traditional recipes and fresh ingredients.", url: "https://baanmu.com", siteName: "Baan Mu", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-fried-pieces-meat-fried-onions_140725-3560.jpg", alt: "Baan Mu Restaurant" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Baan Mu - Authentic Thai Restaurant in San Francisco", description: "Experience authentic Thai cuisine in the heart of San Francisco. Discover our signature dishes and warm hospitality.", images: ["http://img.b2bpic.net/free-photo/medium-fried-pieces-meat-fried-onions_140725-3560.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Baan Mu - Authentic Thai Cuisine", description: "Experience authentic Thai cuisine at Baan Mu in San Francisco"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}