Files
ProxMenux/AppImage/app/page.tsx

10 lines
216 B
TypeScript
Raw Normal View History

2025-09-28 23:05:59 +02:00
import { ProxmoxDashboard } from "../AppImage/components/proxmox-dashboard"
2025-09-28 19:40:23 +02:00
2025-09-28 23:05:59 +02:00
export default function Page() {
2025-09-28 19:40:23 +02:00
return (
<main className="min-h-screen bg-background">
<ProxmoxDashboard />
</main>
)
}