From bc94ead46ed83412d54fb8d34742e00b968f55ed Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:26:34 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++--------------------------------------- 1 file changed, 6 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 558c73d..d661d32 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,17 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "PV Electronics Ltd. - Computer & Laptop Repair in Silistra", description: "Professional computer repair service in Silistra. Fast, affordable laptop & PC repair. 5-star rated. Hardware diagnostics, upgrades & more. Call +359 88 895 3002", keywords: "computer repair Silistra, laptop repair, PC repair Bulgaria, hardware diagnostics, system upgrade", openGraph: { - title: "PV Electronics Ltd. - Professional Computer Repair", description: "Expert computer and laptop repair service in Silistra, Bulgaria. Fast & reliable. 5-star rated.", siteName: "PV Electronics Ltd.", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/technology-background-texture_23-2148105497.jpg", alt: "Professional computer repair service" - } - ] - }, - twitter: { - card: "summary_large_image", title: "PV Electronics Ltd. - Computer Repair Silistra", description: "Professional computer repair service. 5-star rated. Fast & affordable.", images: ["http://img.b2bpic.net/free-photo/technology-background-texture_23-2148105497.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "PV Electronics - Professional Computer & Laptop Repair in Silistra", description: "Fast, affordable, and reliable computer repair service in Silistra, Bulgaria. Expert technicians, 5-star rated, same-day service available.", keywords: "computer repair, laptop repair, Silistra, Bulgaria, tech support"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}