Update src/app/layout.tsx

This commit is contained in:
2026-03-03 19:30:29 +00:00
parent bc94ead46e
commit 4c8487fc85

View File

@@ -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 (
<html lang="en">
<body>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${inter.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1379,6 +1406,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}