From 4c8487fc85b7122db331fa4a49b67b07732c9409 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:30:29 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 40 ++++++++++++++++++++++++++++++++++------ 1 file changed, 34 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d661d32..eb1fe87 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,44 @@ import type { Metadata } from "next"; -import "./styles/globals.css"; +import { Inter } from "next/font/google"; +import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { - 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"}; + 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 + } +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + + {children} +