Update src/app/layout.tsx

This commit is contained in:
2026-03-12 20:05:37 +00:00
parent 9e499d47d9
commit 0f43c41f82

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 { Archivo } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "GustoBuzău - Restaurante Top 4.5+ Stele în Buzău, România",
description: "Descoperă cele mai bune restaurante din Buzău cu rating 4.5+ stele. Review-uri autentice, informații complete și acces direct la website-urile restaurantelor.",
keywords: "restaurante Buzău, restaurante 4.5 stele, dining Buzău, mâncare Buzău, reservări restaurante",
metadataBase: new URL("https://gustobuzau.ro"),
alternates: {
canonical: "https://gustobuzau.ro",
},
openGraph: {
title: "GustoBuzău - Restaurante Premium în Buzău",
description: "Găsește restaurantele de top din Buzău. Doar 4.5+ stele, review-uri autentice, acces direct.",
url: "https://gustobuzau.ro",
siteName: "GustoBuzău",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/happy-couple-lovely-date_23-2148422309.jpg",
alt: "GustoBuzău - Premium Restaurants",
},
],
},
twitter: {
card: "summary_large_image",
title: "GustoBuzău - Restaurante Top în Buzău",
description: "Descoperă restaurantele premium din Buzău cu 4.5+ stele rating",
images: ["http://img.b2bpic.net/free-photo/happy-couple-lovely-date_23-2148422309.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}