Update src/app/layout.tsx

This commit is contained in:
2026-03-05 02:27:20 +00:00
parent 66937d103b
commit 94300f68d7

View File

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