diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a236960..6eb08ac 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700", "800"], }); export const metadata: Metadata = { - title: "Tedy Max Trans - European Road Freight & Logistics", description: "Reliable freight transport from UK and Italy to North Macedonia and the Balkans. Professional road logistics services with controlled delivery and tracking.", keywords: "European transport, freight from UK to Macedonia, logistics from Italy, road freight Europe, Balkans transport, cargo delivery, international shipping", metadataBase: new URL("https://tedymaxtrans.com"), - alternates: { - canonical: "https://tedymaxtrans.com"}, - openGraph: { - title: "Tedy Max Trans - European Freight & Logistics", description: "Reliable transport services from UK and Italy to North Macedonia with secure routes and controlled logistics.", url: "https://tedymaxtrans.com", siteName: "Tedy Max Trans", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/female-truck-driver-checking-vehicle-tightening-truck-tarpaulin_342744-292.jpg", alt: "Professional freight truck on European highway"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Tedy Max Trans - European Freight & Logistics", description: "Reliable transport services from UK and Italy to North Macedonia with secure routes and controlled logistics.", images: ["http://img.b2bpic.net/free-photo/female-truck-driver-checking-vehicle-tightening-truck-tarpaulin_342744-292.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Tedy Max Trans - European Freight & Logistics Services", description: "Reliable transport services from UK and Italy to North Macedonia. Professional European road freight, door-to-door delivery, and controlled logistics."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -