Files
56bd2d42-4f8f-43a2-90e1-b74…/src/app/layout.tsx
2026-03-26 08:31:02 +00:00

75 lines
2.7 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'The Barber Amna Vatrić | Premium Grooming in Konjic',
description: 'Experience the best barbershop in Konjic, Bosnia and Herzegovina. The Barber Amna Vatrić offers high-quality haircuts, beard trims, and full grooming services in a luxurious, modern atmosphere.',
keywords: ["barbershop Konjic, haircut Bosnia Herzegovina, premium barber Konjic, Amna Vatrić, men's grooming Konjic, luxury barbershop, Konjic salon"],
openGraph: {
"title": "The Barber Amna Vatrić | Premium Grooming in Konjic",
"description": "Experience the best barbershop in Konjic, Bosnia and Herzegovina. The Barber Amna Vatrić offers high-quality haircuts, beard trims, and full grooming services in a luxurious, modern atmosphere.",
"url": "https://www.thebarberamnavatric.com",
"siteName": "The Barber Amna Vatrić",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/high-angle-male-self-care-setting-still-life_23-2150326537.jpg",
"alt": "Luxurious barbershop interior"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "The Barber Amna Vatrić | Premium Grooming in Konjic",
"description": "Experience the best barbershop in Konjic, Bosnia and Herzegovina. The Barber Amna Vatrić offers high-quality haircuts, beard trims, and full grooming services in a luxurious, modern atmosphere.",
"images": [
"http://img.b2bpic.net/free-photo/high-angle-male-self-care-setting-still-life_23-2150326537.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}