diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d43d30d..a268b7a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Geist, Geist_Mono } from "next/font/google"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "THE BARBER KING - Premium Barber Shop in Varna", description: "Expert haircuts and beard trims in Varna. 4.9★ rated barber shop with precision cuts and professional service. Call 089 617 5008 or book online.", keywords: "barber Varna, haircut Varna, beard trim Varna, barber shop Bulgaria, professional barber", metadataBase: new URL("https://thebarberkingvarna.com"), - alternates: { - canonical: "https://thebarberkingvarna.com"}, - openGraph: { - title: "THE BARBER KING - Premium Barber Shop in Varna", description: "Expert haircuts and beard trims in Varna. 4.9★ rated by 218+ customers.", url: "https://thebarberkingvarna.com", siteName: "THE BARBER KING", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/portrait-serious-middle-age-bearded-male-dressed-plaid-flannel-shirt-grey-background_613910-1788.jpg", alt: "Professional barber services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "THE BARBER KING - Premium Barber Shop in Varna", description: "Expert haircuts and beard trims. 4.9★ rated barber shop.", images: ["http://img.b2bpic.net/free-photo/portrait-serious-middle-age-bearded-male-dressed-plaid-flannel-shirt-grey-background_613910-1788.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "THE BARBER KING | Премиум Бръснарница във Варна", description: "Премиумни прически, оформяне на брада и модерни стилове. 4.9-звезден рейтинг от 218+ задоволени клиенти във Варна."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -