Update src/app/layout.tsx

This commit is contained in:
2026-03-11 17:16:25 +00:00
parent b14d109ebd
commit 466e8cc0ef

View File

@@ -1,28 +1,55 @@
import type { Metadata } from "next";
import { Montserrat, Inter } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Buffalo House - Steakhouse & Burgers in Poznań",
description: "Premium steaks, burgers, and pizza in Poznań. Casual American steakhouse with great atmosphere, perfect for groups and celebrations. Reserve your table now.",
keywords: "steakhouse Poznań, burgers Poznań, pizza Poznań, restaurant Piątkowska, where to eat Poznań, premium steaks",
openGraph: {
title: "Buffalo House - Premium Steaks & Atmosphere",
description: "Discover Buffalo House, the ultimate steakhouse in Poznań. Premium beef, gourmet burgers, craft cocktails, and unforgettable dining experiences.",
siteName: "Buffalo House",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/salt-sprinkles-are-fallen-top-beef-steak-served-with-wine_140725-1999.jpg",
alt: "Buffalo House Premium Steaks",
}
],
},
twitter: {
card: "summary_large_image",
title: "Buffalo House - Steakhouse Poznań",
description: "Premium steaks and great atmosphere in Poznań",
images: ["http://img.b2bpic.net/free-photo/salt-sprinkles-are-fallen-top-beef-steak-served-with-wine_140725-1999.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +58,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<body
className={`${montserrat.variable} ${inter.variable} ${halant.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +72,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}