From a798c5142a0798949e3ee7b977ee44e3618d9917 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 04:10:26 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++++------------------------------------ 1 file changed, 8 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e696a12..9e5c9b5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Casa Della Mozzarella - Best Mozzarella in NYC | Arthur Avenue", description: "Zagat-rated Italian deli in the Bronx. Fresh artisanal mozzarella, imported meats, and specialty sandwiches since 1987. 604 East 187th Street, Arthur Avenue.", keywords: "mozzarella, Italian deli, Bronx, Arthur Avenue, fresh cheese, imported meats, artisanal, Zagat-rated", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Casa Della Mozzarella - Best Mozzarella in New York City", description: "Voted Best Mozzarella in NYC for over a decade. Fresh artisanal cheese and imported Italian specialties. Visit us on Arthur Avenue.", type: "website", siteName: "Casa Della Mozzarella", images: [ - { - url: "http://img.b2bpic.net/free-photo/fresh-mozzarella-cheese-soft-italian-cheeses-tomato-basil-olives-oil-rosemary-wooden-serving-board-light-wooden-surface-healthy-food-top-view-flat-lay_1150-44825.jpg", alt: "Fresh mozzarella being hand-pulled"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Casa Della Mozzarella - Best Mozzarella in NYC", description: "Zagat-rated artisanal Italian deli. Fresh mozzarella and imported meats on Arthur Avenue, Bronx.", images: ["http://img.b2bpic.net/free-photo/fresh-mozzarella-cheese-soft-italian-cheeses-tomato-basil-olives-oil-rosemary-wooden-serving-board-light-wooden-surface-healthy-food-top-view-flat-lay_1150-44825.jpg"], - }, -}; + title: "Casa Della Mozzarella - Best Mozzarella in NYC", description: "Zagat-rated Italian deli on Arthur Avenue in the Bronx. Premium mozzarella, imported meats, and artisanal Italian specialties since 1987."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}