5 Commits

Author SHA1 Message Date
f23161e746 Update src/app/page.tsx 2026-03-10 08:47:55 +00:00
fbba6d2a4d Update src/app/layout.tsx 2026-03-10 08:47:55 +00:00
d79774642a Merge version_1 into main
Merge version_1 into main
2026-03-10 08:44:48 +00:00
f3145d7f0b Merge version_1 into main
Merge version_1 into main
2026-03-10 08:26:43 +00:00
8a546d4a15 Merge version_1 into main
Merge version_1 into main
2026-03-10 08:25:20 +00:00
2 changed files with 9 additions and 44 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -210,11 +210,11 @@ export default function DrivrUnifyPage() {
tagIcon={Mail}
tagAnimation="slide-up"
title="Join the Waitlist Today"
description="Be among the first drivers to experience unified order management. Early access members get exclusive beta features and premium support."
description="Early access members get free premium tier for 3 months, priority support, and exclusive beta features. Start earning more immediately when you get access."
background={{ variant: "rotated-rays-animated" }}
useInvertedBackground={false}
inputPlaceholder="your.email@example.com"
buttonText="Get Early Access"
buttonText="Join Waitlist + Get $50 Bonus"
termsText="We respect your privacy. Unsubscribe anytime. By joining, you agree to receive updates about DrivrUnify."
containerClassName="py-20"
titleClassName="text-4xl md:text-5xl font-extrabold"
@@ -267,4 +267,4 @@ export default function DrivrUnifyPage() {
</div>
</ThemeProvider>
);
}
}