Update src/app/layout.tsx

This commit is contained in:
2026-03-17 19:46:46 +00:00
parent 93aa3d69df
commit ba5dcc7240

View File

@@ -1,24 +1,65 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 { Manrope } 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 manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "LPG Studio - Ендермология и LPG Масаж в София",
description: "Откройте революционния LPG масаж за целулит редукция, оформяне на тялото и омладяване на кожата. Професионален уход, видими резултати, 500+ доволни клиентки.",
keywords: "LPG масаж, ендермология, целулит редукция, оформяне на тялото, лимфен дренаж, массаж София, красота, спа",
metadataBase: new URL("https://lpgstudio.bg"),
alternates: {
canonical: "https://lpgstudio.bg",
},
openGraph: {
title: "LPG Studio - Ваше място за красота и благосъстояние",
description: "Професионален LPG масаж и ендермология. Целулит редукция, оформяне на тялото, омладяване на кожата.",
url: "https://lpgstudio.bg",
siteName: "LPG Studio",
images: [
{
url: "http://img.b2bpic.net/free-photo/warm-oil-palms-client-legs-pre-massage-ritual-daily-selfcare_169016-69389.jpg",
alt: "LPG Studio - Professional Beauty Treatment",
width: 1200,
height: 630,
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "LPG Studio - Ендермология и Массаж",
description: "Откройте силата на LPG третирането за красота и благосъстояние",
images: [
"http://img.b2bpic.net/free-photo/woman-face-massage-mirror-with-gua-sha_23-2149349077.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +68,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +82,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}