Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-05 16:07:35 +00:00

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}