Update src/app/layout.tsx

This commit is contained in:
2026-03-06 13:27:28 +00:00
parent c4961f46b5
commit d5d1c0d0d1

View File

@@ -1,58 +1,21 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } 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 interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Ателие 21 Маникюр - Салон за Маникюр Варна", description: "Премиум салон за маникюр във Варна с гел лак, класически маникюр и nail art. Запазете час онлайн или обадете се. Висока хигиена и професионализъм.", keywords: "маникюр Варна, гел лак Варна, салон за маникюр, nail art, красота ръце", metadataBase: new URL("https://atelie21.bg"),
alternates: {
canonical: "https://atelie21.bg"},
openGraph: {
title: "Ателие 21 Маникюр - Премиум Салон във Варна", description: "Descobrire elegan manicure in Varna. Servicii profesionale, higuena inalta si atentie personala.", url: "https://atelie21.bg", siteName: "Ателие 21 Маникюр", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/front-view-hands-holding-sangria-drink_23-2149380885.jpg", alt: "Ателие 21 Маникюр - Премиум Салон"},
],
},
twitter: {
card: "summary_large_image", title: "Ателие 21 Маникюр - Варна", description: "Професионален маникюр с гел лак и nail art във Варна", images: ["http://img.b2bpic.net/free-photo/front-view-hands-holding-sangria-drink_23-2149380885.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Ателие 21 Маникюр - Премиум Студио за Красота във Варна", description:
"Професионален маникюр и nail art услуги във Варна. Прецизност, висока хигиена и дълготраен резултат. Запази час сега!"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="bg">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}