Update src/app/layout.tsx

This commit is contained in:
2026-03-03 13:31:25 +00:00
parent c238ec5360
commit aa0a84ef6b

View File

@@ -1,13 +1,12 @@
import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({
@@ -15,14 +14,14 @@ const inter = Inter({
});
export const metadata: Metadata = {
title: "Power Quad | Motorcycle & Quad Repair Warszawice", description: "Professional motorcycle and quad repair service in Warszawice. Expert mechanics, 4.8★ rating, emergency support, tire replacement. Call 793 731 138.", keywords: "motorcycle repair Warszawice, quad service, ATV repair, tire replacement, emergency motorcycle help", robots: {
title: "Power Quad | Motorcycle & Quad Repair Warszawice", description: "Professional motorcycle and quad repair service in Warszawice. Expert mechanics, 4.8★ rating, emergency support, tire replacement. Call 793 731 138. Open 7 days a week. DW805 60, 08-443 Warszawice.", keywords: "motorcycle repair Warszawice, quad service, ATV repair, tire replacement, emergency motorcycle help, local mechanic Poland", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Power Quad | Expert Motorcycle & Quad Service", description: "Reliable motorcycle and quad repairs in Warszawice. Trusted by local riders. 4.8★ rating. Call now: 793 731 138", url: "https://powerquad.local", siteName: "Power Quad", type: "website"},
title: "Power Quad | Expert Motorcycle & Quad Service", description: "Reliable motorcycle and quad repairs in Warszawice. Trusted by local riders. 4.8★ rating (14 reviews). Call now: 793 731 138", url: "https://powerquad.local", siteName: "Power Quad", type: "website"},
twitter: {
card: "summary_large_image", title: "Power Quad | Motorcycle & Quad Repair", description: "Expert service in Warszawice. 4.8★ rating. Emergency support available. 793 731 138"},
card: "summary_large_image", title: "Power Quad | Motorcycle & Quad Repair", description: "Expert service in Warszawice. 4.8★ rating (14 reviews). Emergency support available. 793 731 138"},
};
export default function RootLayout({
@@ -34,7 +33,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}