From bb70a26f6b14e6a88e3128840f85c7547a5d498c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 14:41:47 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8469f15..9368e8d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,17 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "Zakour Trading Ltd. - Reliable Trading Supplies in Accra", description: "Trusted wholesale and retail supplies in Accra. Quality products, competitive pricing, and responsive service for your business.", keywords: "trading supplies Accra, wholesale products Ghana, local business supplies, retail trading company", metadataBase: new URL("https://zakourtrading.com"), - alternates: { - canonical: "https://zakourtrading.com"}, - openGraph: { - title: "Zakour Trading Ltd. - Your Trusted Local Trading Partner", description: "Quality wholesale and retail supplies for businesses in Accra. Reliable, fast service.", url: "https://zakourtrading.com", siteName: "Zakour Trading Ltd.", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-bio-food-shop-helped-by-seller_482257-81634.jpg", alt: "Zakour Trading Ltd Store"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Zakour Trading Ltd. - Trusted Trading Supplies", description: "Quality wholesale and retail supplies in Accra", images: ["http://img.b2bpic.net/free-photo/man-bio-food-shop-helped-by-seller_482257-81634.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Zakour Trading Ltd. | Wholesale & Retail Supplies in Accra", description: "Trusted wholesale and retail supplies for businesses and individuals across Accra. Your reliable local trading partner."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}