Update src/app/layout.tsx

This commit is contained in:
2026-03-04 21:08:31 +00:00
parent cd5a29c510
commit fed62088f1

View File

@@ -1,51 +1,17 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_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 openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Golden Flame - Authentic Balkan Cuisine & Grilled Specialties", description: "Experience authentic Balkan cuisine at Golden Flame. Premium grilled meats, traditional chevapi, fresh seafood, and more. Order online or make a reservation today.", keywords: "Balkan restaurant, grilled meats, authentic cuisine, chevapi, schnitzel, steaks, seafood, Mediterranean food", openGraph: {
title: "Golden Flame - Authentic Balkan Cuisine", description: "Discover traditional Balkan flavors expertly grilled to perfection. Premium quality meats, seafood, and traditional dishes.", siteName: "Golden Flame", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/saj-made-from-vegetables-meat-charcoal_140725-3569.jpg", alt: "Golden Flame Balkan Restaurant"
}
]
},
twitter: {
card: "summary_large_image", title: "Golden Flame - Authentic Balkan Restaurant", description: "Experience authentic Balkan cuisine. Grilled to perfection.", images: ["http://img.b2bpic.net/free-photo/saj-made-from-vegetables-meat-charcoal_140725-3569.jpg"]
}
};
title: "Golden Flame - Authentic Balkan Cuisine", description: "Experience authentic Balkan cuisine grilled to perfection at Golden Flame Restaurant."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}