88 lines
3.9 KiB
TypeScript
88 lines
3.9 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 text-slate-300">Umsatz gesamt</CardTitle>
|
|
<TrendingUp className="h-4 w-4 text-primary" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-2xl font-bold text-white">€12,234.56</div>
|
|
<p className="text-xs text-slate-400">+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 text-slate-300">Bestellungen</CardTitle>
|
|
<ShoppingCart className="h-4 w-4 text-primary" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-2xl font-bold text-white">+573</div>
|
|
<p className="text-xs text-slate-400">+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 text-slate-300">Produkte</CardTitle>
|
|
<Package className="h-4 w-4 text-primary" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-2xl font-bold text-white">12</div>
|
|
<p className="text-xs text-slate-400">+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 text-slate-300">Kunden</CardTitle>
|
|
<Users className="h-4 w-4 text-primary" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="text-2xl font-bold text-white">2,450</div>
|
|
<p className="text-xs text-slate-400">+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-slate-400 italic">
|
|
[Umsatz-Chart wird geladen...]
|
|
</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 text-white">John Doe</p>
|
|
<p className="text-xs text-slate-400">john.doe@example.com</p>
|
|
</div>
|
|
<div className="font-medium text-white">+€450.00</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|