Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f23161e746 | |||
| fbba6d2a4d | |||
| d79774642a | |||
| f3145d7f0b | |||
| 8a546d4a15 |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Manrope } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: "DrivrUnify - Unified Delivery Driver Dashboard", description: "One app for every delivery platform. Manage all orders, track earnings, and optimize routes."};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -210,11 +210,11 @@ export default function DrivrUnifyPage() {
|
|||||||
tagIcon={Mail}
|
tagIcon={Mail}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
title="Join the Waitlist Today"
|
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" }}
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="your.email@example.com"
|
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."
|
termsText="We respect your privacy. Unsubscribe anytime. By joining, you agree to receive updates about DrivrUnify."
|
||||||
containerClassName="py-20"
|
containerClassName="py-20"
|
||||||
titleClassName="text-4xl md:text-5xl font-extrabold"
|
titleClassName="text-4xl md:text-5xl font-extrabold"
|
||||||
|
|||||||
Reference in New Issue
Block a user