Switch to version 1: modified src/app/layout.tsx

This commit is contained in:
2026-03-10 00:34:45 +00:00
parent a8b1e28b7f
commit 46b55052aa

View File

@@ -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 (
<html lang="pl">
<body className={inter.className}>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1382,6 +1419,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}