From c67205f9bc9bb53f56e85efdbce82e527e476350 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 03:12:47 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 12 insertions(+), 1426 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 48d2b0e..6c576b0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "MBG Kitchens | Custom Kitchen Design Sherman Oaks", - description: "Expert kitchen design and custom cabinetry in Sherman Oaks. Premium kitchen remodeling for Los Angeles homeowners. Call (818) 939-7725 today.", - keywords: "kitchen design Sherman Oaks, custom kitchen cabinets, kitchen remodel Los Angeles, kitchen renovation, interior design", - metadataBase: new URL("https://mbgkitchens.com"), - alternates: { - canonical: "https://mbgkitchens.com", - }, - openGraph: { - title: "MBG Kitchens | Premium Kitchen Design", - description: "Transform your kitchen with expert design and premium cabinetry. Serving Sherman Oaks and Los Angeles County.", - url: "https://mbgkitchens.com", - siteName: "MBG Kitchens", - type: "website", - images: [ - { - url: "https://mbgkitchens.com/og-kitchen.jpg", - alt: "MBG Kitchens luxury kitchen design", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "MBG Kitchens | Custom Kitchen Design", - description: "Premium kitchen design and remodeling in Sherman Oaks", - images: ["https://mbgkitchens.com/twitter-kitchen.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "MBG Kitchens", description: "Custom kitchen design and cabinetry solutions for Los Angeles homeowners"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -