From c1cc35ff67e7523c0a0fc86d1c1c793874df6c72 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:17:03 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++++++++++------------------------------- 1 file changed, 17 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7008d5c..2f3c459 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,32 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "PALIAVA – Premium Barbershop in Kaunas Old Town", description: "Elite barbershop in Kaunas. Expert haircuts, serious craftsmanship, and a cult-like community. Book your appointment today.", keywords: "barbershop Kaunas, haircut, barber, men's grooming, premium haircuts", openGraph: { - title: "PALIAVA – Luxury Underground Barbershop", description: "Elite barbershop in Kaunas Old Town. Good haircuts. Questionable conversations.", siteName: "PALIAVA", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/hairdressing-chair-vintage-barber-shop_23-2148298304.jpg", alt: "PALIAVA Barbershop"}, - ], - }, - twitter: { - card: "summary_large_image", title: "PALIAVA – Premium Barbershop", description: "Elite haircuts in Kaunas Old Town", images: ["http://img.b2bpic.net/free-photo/hairdressing-chair-vintage-barber-shop_23-2148298304.jpg"], - }, + title: 'PALIAVA - Kaunas Luxury Barbershop', + description: 'Premium haircuts and grooming in Kaunas Old Town. Serious craftsmanship, questionable conversations.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +