Create AppImage

This commit is contained in:
MacRimi
2025-09-28 19:40:23 +02:00
parent 66060f345c
commit 6ae97266e4
17 changed files with 3016 additions and 0 deletions

9
AppImage/app/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { ProxmoxDashboard } from "@/components/proxmox-dashboard"
export default function Home() {
return (
<main className="min-h-screen bg-background">
<ProxmoxDashboard />
</main>
)
}