From 94300f68d7c4a0bcbf4f66e7cb6e1ddca80f5bfa Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 02:27:20 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b478eea..c486d36 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "One Day Cafe - Korean Specialty Coffee in Lakewood", - description: "Come as you are. One Day Cafe serves specialty Korean coffee, intentional service, and community vibes in Lakewood. Open Mon–Thu 9am–9pm, Fri–Sat 9am–10pm.", - keywords: "Korean coffee, specialty coffee, Lakewood WA, coffee shop, matcha, croffle, tiramisu, cafe, LGBTQ+ friendly", - openGraph: { - title: "One Day Cafe - Your Neighborhood Coffee Spot", - description: "Specialty Korean coffee, crafted with intention. Come as you are.", - siteName: "One Day Cafe", - images: [ - { - url: "http://img.b2bpic.net/free-photo/white-ceramic-mug-with-coffee_209848-35.jpg", - alt: "One Day Cafe specialty coffee", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "One Day Cafe - Korean Specialty Coffee", - description: "Crafted with intention. Served with warmth. Your neighborhood coffee shop.", - images: ["http://img.b2bpic.net/free-photo/white-ceramic-mug-with-coffee_209848-35.jpg"], - }, -}; + title: "One Day Cafe", description: "Specialty Korean coffee, intentional service, and community."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}