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}