From 46b55052aae4eb45bc00aa20e25304817b984130 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 00:34:45 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 44 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bc7d719..f6e8e2c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,57 @@ import type { Metadata } from "next"; +import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_Sans } from "next/font/google"; import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const inter = Inter({ subsets: ["latin"] }); +const halant = Halant({ + variable: "--font-halant", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + +const openSans = Open_Sans({ + variable: "--font-open-sans", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Happy Men Barbershop", description: "Profesjonalny barbershop w centrum Poznania. Strzyżenie męskie, stylizacja brody i klasyczny barbering w nowoczesnym wydaniu."}; + title: "Barbershop Poznań – Happy Men | Strzyżenie męskie i broda", description: "Nowoczesny barbershop w centrum Poznania. Profesjonalne strzyżenie męskie, stylizacja brody i golenie brzytwą. ⭐ 4.9/5 opinii. Zarezerwuj wizytę online.", keywords: "barbershop Poznań, barber Poznań, fryzjer męski Poznań, strzyżenie męskie Poznań, barber centrum Poznania, Happy Men barbershop", robots: { + index: true, + follow: true, + }, + metadataBase: new URL("https://happymen-barbershop.pl"), + alternates: { + canonical: "https://happymen-barbershop.pl"}, + openGraph: { + title: "Barbershop Poznań – Happy Men", description: "Profesjonalny barbershop w centrum Poznania. Strzyżenie męskie, broda, golenie. Zarezerwuj online.", url: "https://happymen-barbershop.pl", siteName: "Happy Men Barbershop", type: "website", images: [ + { + url: "http://img.b2bpic.net/free-photo/handsome-stylish-bearded-male-with-tattoo-arm-dressed-flannel-shirt-drinks-coffee-barbershop_613910-14697.jpg", alt: "BarberShop Happy Men Poznań"}, + ], + }, + twitter: { + card: "summary_large_image", title: "Barbershop Poznań – Happy Men", description: "Profesjonalny barbershop w centrum Poznania. Strzyżenie męskie i broda.", images: ["http://img.b2bpic.net/free-photo/handsome-stylish-bearded-male-with-tattoo-arm-dressed-flannel-shirt-drinks-coffee-barbershop_613910-14697.jpg"], + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + + {children} +