From 29df0805486bd11295055821d25f46dc34eae29d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 17:17:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++++------------------------------------- 1 file changed, 10 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e850349..c878e1f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,22 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Outfit } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const outfit = Outfit({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Vulcanizare Mobilă Cluj | Road-Runner – Serviciu Rapid la Domiciliu", description: "Serviciu de vulcanizare mobilă în Cluj-Napoca. Reparații pană, schimb anvelope la domiciliu. Intervenție rapidă ≤30 min. Sună: 0744 237 237", keywords: "vulcanizare mobilă Cluj, schimb anvelope Cluj, pană auto Cluj, asistență pană Cluj, service anvelope mobil Cluj", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Vulcanizare Mobilă Cluj | Road-Runner", description: "Serviciu rapid de reparație și schimb anvelope direct la locația ta. Ajungem în ≤30 minute.", url: "https://road-runner-cluj.com", siteName: "Road-Runner", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31692.jpg", alt: "Road-Runner Serviciu de vulcanizare mobilă"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Vulcanizare Mobilă Cluj | Road-Runner", description: "Serviciu rapid de reparație și schimb anvelope. Sună: 0744 237 237", images: ["http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31692.jpg"], - }, + title: 'Road-Runner Vulcanizare Mobilă Cluj', + description: 'Vulcanizare mobilă și schimb anvelope la domiciliu în Cluj-Napoca. Intervenție rapidă ≤30 min, echipament profesional, disponibil 24/7.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}