From e703d37fe87d2a8e8bb66c3d5594385195288491 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 06:40:40 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 41 +++++++++-------------------------------- 1 file changed, 9 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cffad8e..dd290f0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,23 @@ import type { Metadata } from "next"; -import { Montserrat, Inter } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Lakierni Pro - Profesjonalne Lakiery do Drewna | Polska", description: "Najwyższej jakości lakiery i powłoki do drewna. Zaufana marka od 25 lat. Lakiery ekologiczne, polyurethane i specjalne powłoki dla profesjonalistów.", keywords: "lakiery, lakiery do drewna, lakiery ekologiczne, powłoki, drewno, polska, profesjonalne", metadataBase: new URL("https://lakiernipro.pl"), - alternates: { - canonical: "https://lakiernipro.pl" - }, - openGraph: { - title: "Lakierni Pro - Profesjonalne Lakiery do Drewna", description: "Najwyższej jakości lakiery i powłoki do drewna. Zaufana marka od 25 lat w Polsce.", url: "https://lakiernipro.pl", siteName: "Lakierni Pro", type: "website" - }, - robots: { - index: true, - follow: true - } -}; + title: "Lakierni Pro - Profesjonalne Lakiery i Powłoki do Drewna", description: "Najwyższa jakość lakierów i powłok do drewna. Polska marka zaufana od ponad 20 lat w branży."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}