From fe254637d6d80daf2a8ea965eb30e56272d93a6e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 22:05:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e9537a4..6812b6c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ 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"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "RONAR – Profesjonalny Serwis Rowerowy we Wrocławiu", description: "Serwis rowerowy RONAR we Wrocławiu. Naprawa, przeglądy i regulacje rowerów. Doświadczeni mechanicy, profesjonalne narzędzia. Ocena 4.8★", keywords: "serwis rowerowy Wrocław, naprawa rowerów, przegląd rowerów, regulacja hamulców, serwis MTB", openGraph: { - title: "RONAR – Serwis Rowerowy we Wrocławiu", description: "Profesjonalny serwis rowerowy z doświadczonym zespołem mechanikami. Szybkie naprawy i konserwacja.", siteName: "RONAR", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/smiling-mechanic-workshop_1170-2979.jpg", alt: "RONAR Serwis Rowerowy"}, - ], - }, - twitter: { - card: "summary_large_image", title: "RONAR – Serwis Rowerowy", description: "Profesjonalny serwis rowerowy we Wrocławiu. Naprawa i przeglądy rowerów.", images: ["http://img.b2bpic.net/free-photo/smiling-mechanic-workshop_1170-2979.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "RONAR - Profesjonalny Serwis Rowerowy we Wrocławiu", description: "Szybka naprawa, dokładny przegląd i fachowa regulacja Twojego roweru. Serwis rowerowy RONAR we Wrocławiu."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}