diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 47fecec..889f755 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,43 +1,28 @@ import type { Metadata } from "next"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +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: "NY Best Deli - Fresh Quality Sandwiches & Deli", description: "Neighborhood favorite deli serving fresh sandwiches, premium meats, and prepared meals daily. Hand-sliced deli meats, quality ingredients, and community service.", keywords: "deli, sandwiches, fresh, catering, deli meats, prepared meals, neighborhood deli", openGraph: { - title: "NY Best Deli - Fresh Quality Sandwiches", description: "Neighborhood favorite deli serving fresh sandwiches, premium meats, and prepared meals daily.", siteName: "NY Best Deli", type: "website"}, - twitter: { - card: "summary_large_image", title: "NY Best Deli - Fresh Quality Sandwiches", description: "Your neighborhood's favorite deli since 2004. Fresh, quality ingredients every day."}, - robots: { - index: true, - follow: true, - }, -}; + title: "NY Best Deli", description: "Your neighborhood's favorite deli with fresh, quality products and prepared meals."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +