Merge version_2 into main #3
@@ -35,6 +35,7 @@ export default function LandingPage() {
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Seller Dashboard", id: "/seller-dashboard" },
|
||||
]}
|
||||
brandName="ShipFlow"
|
||||
/>
|
||||
|
||||
41
src/app/seller-dashboard/page.tsx
Normal file
41
src/app/seller-dashboard/page.tsx
Normal file
@@ -0,0 +1,41 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import { BarChart3, DollarSign, Package, User } from "lucide-react";
|
||||
|
||||
export default function SellerDashboardPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Seller Dashboard", id: "/seller-dashboard" },
|
||||
]}
|
||||
brandName="ShipFlow"
|
||||
/>
|
||||
<div className="pt-32 pb-20 px-6 max-w-7xl mx-auto">
|
||||
<h1 className="text-4xl font-bold mb-8">Seller Dashboard</h1>
|
||||
<MetricCardOne
|
||||
title="Your Performance"
|
||||
description="Track your earnings and shipping progress."
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
metrics={[
|
||||
{ id: "earnings", icon: DollarSign, title: "Total Earnings", value: "$12,450", description: "Up 12% this month" },
|
||||
{ id: "orders", icon: Package, title: "Active Orders", value: "48", description: "Processing today" },
|
||||
{ id: "account", icon: User, title: "Profile Status", value: "Verified", description: "Complete" },
|
||||
{ id: "stats", icon: BarChart3, title: "Completion Rate", value: "98%", description: "High performance" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user