From b9c5ac7c08e07893165b53fa4355e013d81b3daa Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 18:10:30 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 8 insertions(+), 1430 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e23541a..b3e787d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Ban Auto | Quality Cars in Lusaka, Zambia", - description: "Buy trusted, fully inspected quality vehicles at Ban Auto. Premium imported cars at competitive prices in Lusaka, Zambia. Easy payment options and WhatsApp support.", - keywords: "car sales Lusaka, used cars Zambia, car dealership, quality vehicles, imported cars, automobile dealer", - metadataBase: new URL("https://banauto.zm"), - alternates: { - canonical: "https://banauto.zm", - }, - openGraph: { - title: "Ban Auto - Quality Cars for Zambia", - description: "Browse our selection of premium vehicles. Fully inspected, affordable, and trusted by hundreds of customers.", - url: "https://banauto.zm", - siteName: "Ban Auto", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/handsome-business-man-by-white-car_1303-16401.jpg", - alt: "Ban Auto - Premium vehicles", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Ban Auto | Quality Cars in Lusaka", - description: "Premium imported vehicles at competitive prices. Contact us on WhatsApp today!", - images: ["http://img.b2bpic.net/free-photo/handsome-business-man-by-white-car_1303-16401.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Ban Auto - Quality Cars for Zambia", description: "Buy trusted vehicles at the best prices. Ban Auto offers fully inspected, quality imported cars with transparent pricing and excellent customer service in Lusaka, Zambia."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -