From aa0a84ef6b7d9b75b8fa6abfc3a89e49eaeb252c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 13:31:25 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 12d34d3..c675c14 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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({ {children} -- 2.49.1 From 7166c45435c65e3cde7091c0937321071c7b60c4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 13:31:26 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 153 +++++++++++++++++++++++++++++++++++++---------- 1 file changed, 120 insertions(+), 33 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1f83329..31a7d28 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,23 +9,56 @@ import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCa import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Zap, Wrench, Phone } from "lucide-react"; +import { Zap, Wrench, Phone, MapPin, Clock, Star } from "lucide-react"; export default function LandingPage() { return ( -