From 370c281bf145eab294b47dd65b37cb25e4944b31 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 16:07:24 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++-------------------------------------- 1 file changed, 6 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9ad348c..4bb6019 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Moon's Kitchen Cafe | Breakfast & Brunch in Boise", description: "Cozy breakfast and brunch cafe in Boise since 1955. Pancakes, espresso, eggs benedict, and more. Pet-friendly, wheelchair accessible, kid-approved.", keywords: "breakfast cafe boise, brunch restaurant, morning coffee, eggs benedict, pancakes, espresso drinks, neighborhood cafe", metadataBase: new URL("https://moonskitchencafe.com"), - alternates: { - canonical: "https://moonskitchencafe.com"}, - openGraph: { - title: "Moon's Kitchen Cafe | Breakfast & Brunch in Boise", description: "Since 1955, serving the best breakfast and brunch in Boise. Cozy ambiance, great food, warm service.", url: "https://moonskitchencafe.com", siteName: "Moon's Kitchen Cafe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/still-life-hot-water-arrangement_23-2149055814.jpg", alt: "Moon's Kitchen Cafe interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Moon's Kitchen Cafe | Breakfast & Brunch in Boise", description: "Cozy breakfast and brunch since 1955. Visit us at 800 W Main St, Boise!", images: ["http://img.b2bpic.net/free-photo/still-life-hot-water-arrangement_23-2149055814.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Moon's Kitchen - Breakfast & Brunch in Boise", description: "Since 1955, Moon's Kitchen has been serving Boise the finest breakfast and brunch. Cozy mornings, friendly smiles, and unforgettable food."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}