diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 114eaa1..4bcab71 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1434 +1,22 @@ -import type { Metadata } from "next"; -import { Halant } 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"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import '@/app/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 publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Thornlands Transport - Consolidated Freight Cape Town, Johannesburg, Durban", - description: "Reliable consolidated freight transport between Cape Town, Johannesburg & Durban. Affordable linehaul services for manufacturers, distributors & wholesalers.", - keywords: "consolidated loads South Africa, Cape Town to Johannesburg freight, Cape Town to Durban transport, pallet transport South Africa, logistics company Paarl, freight consolidation, LTL transport", - metadataBase: new URL("https://thornlandstransport.co.za"), - alternates: { - canonical: "https://thornlandstransport.co.za", - }, - openGraph: { - title: "Thornlands Transport - Consolidated Freight Solutions", - description: "Dependable freight consolidation between Cape Town, Johannesburg & Durban. Book your load today.", - url: "https://thornlandstransport.co.za", - siteName: "Thornlands Transport", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Thornlands Transport - Consolidated Freight", - description: "Affordable, reliable freight consolidation across South Africa's major transport corridors", - }, - robots: { - index: true, - follow: true, - }, + title: 'Thornlands Transport - Consolidated Freight Solutions', + description: 'Reliable consolidated freight services between Cape Town, Johannesburg & Durban', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -