15 lines
388 B
TypeScript
15 lines
388 B
TypeScript
// app/(app)/dashboard/page.tsx
|
|
|
|
export default function DashboardPage() {
|
|
return (
|
|
<>
|
|
<h1 className="text-2xl font-semibold text-gray-900 dark:text-white">
|
|
Geräte-Inventar
|
|
</h1>
|
|
<p className="mt-2 text-sm text-gray-600 dark:text-gray-400">
|
|
Hier könntest du gleich als Nächstes eine Übersicht deiner Geräte einbauen.
|
|
</p>
|
|
</>
|
|
);
|
|
}
|