From bd084fc9dec7ba8b1e1d82103dcb8f59c5d1593a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:44:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 ++++++++++++++++++---------------------------- 1 file changed, 22 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 402b56d..da9c968 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,47 +1,36 @@ import type { Metadata } from "next"; -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 "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "DistroHub - Distribution & Logistics Solutions", description: "Trusted distribution and fulfillment services for wholesale, retail, and ecommerce businesses worldwide. Real-time tracking and scalable solutions.", keywords: "distribution, logistics, fulfillment, wholesale, ecommerce, supply chain management", metadataBase: new URL("https://distrolab.com"), - alternates: { - canonical: "https://distrolab.com"}, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "DistroHub - Distribution & Logistics Solutions", description: "Trusted distribution and fulfillment services for wholesale, retail, and ecommerce businesses worldwide.", type: "website", siteName: "DistroHub"}, - twitter: { - card: "summary_large_image", title: "DistroHub - Distribution & Logistics Solutions", description: "Trusted distribution and fulfillment services for wholesale, retail, and ecommerce businesses worldwide."}, -}; + title: "Distro Broz - Distribution Solutions", description: "Trusted distribution solutions for your business"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children} +