88 lines
3.8 KiB
TypeScript
88 lines
3.8 KiB
TypeScript
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
|
|
import { Package, ShoppingCart, Users, TrendingUp } from 'lucide-react'
|
|
|
|
export default function AdminDashboard() {
|
|
return (
|
|
<div className="p-8 space-y-8">
|
|
<h2 className="text-3xl font-bold tracking-tight text-gradient">Dashboard</h2>
|
|
|
|
<div className="grid gap-4 md:grid-cols-2 lg:grid-cols-4">
|
|
<Card className="glass-dark border-white/5">
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle className="text-sm font-medium">Umsatz gesamt</CardTitle>
|
|
<TrendingUp className="h-4 w-4 text-primary" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-2xl font-bold">€12,234.56</div>
|
|
<p className="text-xs text-muted-foreground">+20.1% zum Vormonat</p>
|
|
</CardContent>
|
|
</Card>
|
|
<Card className="glass-dark border-white/5">
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle className="text-sm font-medium">Bestellungen</CardTitle>
|
|
<ShoppingCart className="h-4 w-4 text-primary" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-2xl font-bold">+573</div>
|
|
<p className="text-xs text-muted-foreground">+12% zur Vorwoche</p>
|
|
</CardContent>
|
|
</Card>
|
|
<Card className="glass-dark border-white/5">
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle className="text-sm font-medium">Produkte</CardTitle>
|
|
<Package className="h-4 w-4 text-primary" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-2xl font-bold">12</div>
|
|
<p className="text-xs text-muted-foreground">+2 neue Module</p>
|
|
</CardContent>
|
|
</Card>
|
|
<Card className="glass-dark border-white/5">
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle className="text-sm font-medium">Kunden</CardTitle>
|
|
<Users className="h-4 w-4 text-primary" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-2xl font-bold">2,450</div>
|
|
<p className="text-xs text-muted-foreground">+180 heute</p>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
|
|
<div className="grid gap-4 md:grid-cols-2 lg:grid-cols-7">
|
|
<Card className="col-span-4 glass-dark border-white/5">
|
|
<CardHeader>
|
|
<CardTitle>Übersicht</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="pl-2">
|
|
<div className="h-[200px] flex items-center justify-center text-muted-foreground">
|
|
[Chart Platzhalter]
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
<Card className="col-span-3 glass-dark border-white/5">
|
|
<CardHeader>
|
|
<CardTitle>Letzte Bestellungen</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="space-y-4">
|
|
{[1, 2, 3].map(i => (
|
|
<div key={i} className="flex items-center gap-4">
|
|
<div className="w-9 h-9 rounded-full bg-primary/10 flex items-center justify-center text-primary text-xs font-bold">
|
|
JD
|
|
</div>
|
|
<div className="flex-1 space-y-1">
|
|
<p className="text-sm font-medium">John Doe</p>
|
|
<p className="text-xs text-muted-foreground">john.doe@example.com</p>
|
|
</div>
|
|
<div className="font-medium">+€450.00</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|