diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e73c4bc..5f72d0a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "DrivrUnify - Unified Delivery Driver App | Manage All Orders in One Place", description: "Stop juggling multiple delivery apps. DrivrUnify unifies orders from Uber Eats, DoorDash, Instacart, and more into one dashboard. Track earnings, optimize routes, and maximize profits.", keywords: "delivery driver app, gig economy platform, delivery jobs, multi-app driver, earnings tracker, route optimization, DoorDash, Uber Eats, Instacart", robots: { - index: true, - follow: true, - }, - openGraph: { - type: "website", title: "DrivrUnify - All Your Delivery Orders in One App", description: "Unified dashboard for delivery drivers. Manage orders from all platforms, track earnings in real-time, and optimize routes automatically.", url: "https://drivrunify.com", siteName: "DrivrUnify", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkK53vR1oDFXAGAefba9StP90N/a-modern-sleek-delivery-driver-dashboard-1773131008550-c43683fb.png", alt: "A modern, sleek delivery driver dashboard on a dark background showing unified order feed from multi"}, - ], - }, - twitter: { - card: "summary_large_image", title: "DrivrUnify - Delivery Driver Dashboard", description: "One app for all your delivery orders. Join 50K+ drivers earning more.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkK53vR1oDFXAGAefba9StP90N/a-modern-sleek-delivery-driver-dashboard-1773131008550-c43683fb.png"], - }, -}; + title: "DrivrUnify - Unified Delivery Driver Dashboard", description: "One app for every delivery platform. Manage all orders, track earnings, and optimize routes."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}