From fde69455cd2b4b4c04832792e6555e93c78f8abf Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 11:58:47 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index bf71bc9..b4de8ce 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -84,7 +84,7 @@ export default function AboutPage() { tag="Since 2003" tagIcon={Trophy} tagAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/salesman-woman-looking-car-car-showroom_1303-13635.jpg" + imageSrc="http://img.b2bpic.net/free-photo/salesman-woman-looking-car-car-showroom_1303-13635.jpg?_wi=2" imageAlt="Paulo Car professional team" mediaAnimation="slide-up" metrics={[ @@ -113,7 +113,7 @@ export default function AboutPage() { author: "Paulo Car Standards", description: "Every vehicle undergoes comprehensive inspection, including mechanical review, safety assessment, and cosmetic evaluation to ensure premium condition.", tags: ["Inspection", "Certification", "Quality Assurance"], - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg?_wi=4", imageAlt: "Quality certification process", }, { @@ -122,7 +122,7 @@ export default function AboutPage() { author: "Peace of Mind", description: "All our vehicles come with extended warranty coverage and roadside assistance, protecting your investment and providing security on every journey.", tags: ["Warranty", "Protection", "Support"], - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg?_wi=5", imageAlt: "Warranty coverage details", }, { @@ -131,7 +131,7 @@ export default function AboutPage() { author: "Tailored Solutions", description: "We offer competitive financing options with flexible terms, low rates, and quick approval process to make vehicle ownership accessible and affordable.", tags: ["Financing", "Flexible Terms", "Easy Approval"], - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg?_wi=6", imageAlt: "Financing solutions", }, ]} From d43c1f5df01a1bcc9c6d854028882cea604ebc08 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 11:58:48 +0000 Subject: [PATCH 2/5] Update src/app/financing/page.tsx --- src/app/financing/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/financing/page.tsx b/src/app/financing/page.tsx index 76cd40a..9454848 100644 --- a/src/app/financing/page.tsx +++ b/src/app/financing/page.tsx @@ -91,7 +91,7 @@ export default function FinancingPage() { author: "Standard Financing", description: "Conventional auto loans with competitive interest rates, flexible loan terms from 24 to 84 months, and quick approval process. Available for new and used vehicles with minimal documentation.", tags: ["Competitive Rates", "Flexible Terms", "Quick Approval"], - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg?_wi=7", imageAlt: "Traditional auto loan options", }, { @@ -100,7 +100,7 @@ export default function FinancingPage() { author: "Modern Leasing", description: "Experience the latest vehicles with our competitive leasing programs. Lower monthly payments, included maintenance, and the flexibility to drive a new car every few years.", tags: ["Lower Payments", "Included Maintenance", "Always New"], - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg?_wi=8", imageAlt: "Vehicle leasing programs", }, { @@ -109,7 +109,7 @@ export default function FinancingPage() { author: "Maximum Value", description: "Looking to refinance your existing auto loan? We help you get better rates and terms. Plus, we offer fair trade-in valuations to reduce your down payment on your next vehicle.", tags: ["Better Rates", "Trade-In Value", "Lower Monthly"], - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-looking-phone_23-2148384974.jpg?_wi=9", imageAlt: "Refinancing solutions", }, ]} From 556e98afb245ac1f0336979044525a7866802297 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 11:58:49 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 58 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 47 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..7907ff1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,63 @@ import type { Metadata } from "next"; +import { Libre_Baskerville, Inter } from "next/font/google"; import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Libre_Baskerville } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +export const metadata: Metadata = { + title: "Premium Auto Sales | Paulo Car - Luxury Vehicles", + description: "Discover premium vehicles at Paulo Car. Offering luxury sedans, SUVs, and sports cars with certified quality, extended warranties, and flexible financing options.", + keywords: "luxury cars, auto sales, premium vehicles, car dealership, financing options, test drive", + metadataBase: new URL("https://paulcar.com"), + alternates: { + canonical: "https://paulcar.com", + }, + openGraph: { + title: "Premium Auto Sales | Paulo Car", + description: "Discover your perfect premium vehicle with Paulo Car. 20+ years of automotive excellence.", + url: "https://paulcar.com", + siteName: "Paulo Car", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/african-american-car-mechanic-talking-businessman-auto-repair-shop_637285-4239.jpg", + alt: "Paulo Car - Premium Vehicles", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Premium Auto Sales | Paulo Car", + description: "Discover your perfect premium vehicle with Paulo Car.", + images: [ + "http://img.b2bpic.net/free-photo/african-american-car-mechanic-talking-businessman-auto-repair-shop_637285-4239.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +66,9 @@ export default function RootLayout({ return ( - + {children}