From 3cd71538ccf9ccac73deb70dc4bcbdd8f9eb8bd8 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 22 Jan 2026 08:30:50 +0000 Subject: [PATCH 1/3] 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 882acdb..a46e9ad 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -102,7 +102,7 @@ export default function BlogPage() { navItems={[ { name: "Home", id: "hero" }, { name: "About", id: "about" }, - { name: "Cuisine", id: "features" }, + { name: "Menu", id: "features" }, { name: "Testimonials", id: "testimonial" }, { name: "Contact", id: "contact" } ]} @@ -158,4 +158,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From dfcc20e6fc10218fd7579f0017a12cacb9e31727 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 22 Jan 2026 08:30:51 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 41 +++++++---------------------------------- 1 file changed, 7 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f9144c5..83924cc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,20 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "La Bella Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine in an elegant setting. Fresh ingredients, traditional recipes, and premium wines. Make your reservation today.", keywords: "Italian restaurant, authentic cuisine, fine dining, pasta, wine", metadataBase: new URL("https://labellaitalia.com"), - alternates: { - canonical: "https://labellaitalia.com" - }, - openGraph: { - title: "La Bella Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine in an elegant setting. Fresh ingredients, traditional recipes, and premium wines.", type: "website", siteName: "La Bella Italia", images: [{ - url: "https://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg", alt: "La Bella Italia - Authentic Italian Cuisine" - }] - }, - twitter: { - card: "summary_large_image", title: "La Bella Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine. Fresh ingredients, traditional recipes, premium wines.", images: ["https://img.b2bpic.net/free-photo/close-up-large-tube-pasta-with-chicken-cherry-tomato-with-chopped-parsley_141793-1840.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "La Bella Italia", description: "Experience Authentic Italian Cuisine"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}