Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-03-03 19:26:38 +00:00

View File

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