20 lines
No EOL
433 B
TypeScript
20 lines
No EOL
433 B
TypeScript
import StatCard from "@/components/StatCard";
|
|
import UserCounter from "@/components/UserCounter";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<div className="grid grid-cols-4 gap-6">
|
|
|
|
<StatCard title="Benutzer" value={<UserCounter />} />
|
|
|
|
<StatCard title="Kunden" value="0" />
|
|
|
|
<StatCard title="Reparaturen" value="0" />
|
|
|
|
<StatCard title="Lager" value="0" />
|
|
|
|
</div>
|
|
</>
|
|
);
|
|
} |