Update src/app/layout.tsx

This commit is contained in:
2026-03-06 21:52:32 +00:00
parent ec053f7084
commit b08a225a6e

View File

@@ -1,53 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Osaka Steakhouse | Premium Teppanyaki Dining", description: "Experience authentic Japanese teppanyaki at Osaka Steakhouse. Premium wagyu beef, live chef performances, and cute mascots create unforgettable dining moments.", keywords: "teppanyaki, Japanese steakhouse, wagyu beef, hibachi dining, premium steakhouse, teppanyaki restaurant", metadataBase: new URL("https://osakasterakhouse.com"),
alternates: {
canonical: "https://osakasterakhouse.com"},
openGraph: {
title: "Osaka Steakhouse | Premium Teppanyaki Dining", description: "Watch master chefs create culinary magic at your table. Premium wagyu, fresh seafood, and theatrical cooking performances.", url: "https://osakasterakhouse.com", siteName: "Osaka Steakhouse", images: [
{
url: "http://img.b2bpic.net/free-photo/couple-eating-salmon-dish-bowl-restaurant_23-2150461457.jpg", alt: "Osaka Steakhouse Teppanyaki Performance"},
],
type: "website"},
twitter: {
card: "summary_large_image", title: "Osaka Steakhouse | Premium Teppanyaki Dining", description: "Authentic Japanese teppanyaki with master chefs, premium wagyu, and unforgettable experiences.", images: ["http://img.b2bpic.net/free-photo/couple-eating-salmon-dish-bowl-restaurant_23-2150461457.jpg"],
},
};
title: "Osaka Steakhouse", description: "Experience authentic Japanese teppanyaki dining"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}