Merge version_10 into main

Merge version_10 into main
This commit was merged in pull request #11.
This commit is contained in:
2026-05-30 19:17:23 +00:00

View File

@@ -6,23 +6,21 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Inter_Tight } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: 'Barber Chop VIP: Elite Grooming & Styling',
description: 'Indulge in the ultimate grooming experience at Barber Chop VIP. Discover sophisticated styles, premium services, and an exclusive atmosphere designed for the modern gentleman.',
};
const interTight = Inter_Tight({
variable: "--font-inter-tight",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -31,9 +29,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${interTight.variable} antialiased`}>
<Tag />
{children}
<script