From 3c33d5982caf5fb07c6bd24c2095beb30273d636 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sun, 28 Sep 2025 23:51:06 +0200 Subject: [PATCH] Update AppImage --- AppImage/app/dashboard/page.tsx | 9 +++++++++ AppImage/app/page.tsx | 8 +++----- 2 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 AppImage/app/dashboard/page.tsx diff --git a/AppImage/app/dashboard/page.tsx b/AppImage/app/dashboard/page.tsx new file mode 100644 index 0000000..799df35 --- /dev/null +++ b/AppImage/app/dashboard/page.tsx @@ -0,0 +1,9 @@ +import { ProxmoxDashboard } from "../../components/proxmox-dashboard" + +export default function DashboardPage() { + return ( +
+ +
+ ) +} diff --git a/AppImage/app/page.tsx b/AppImage/app/page.tsx index 47629db..4184221 100644 --- a/AppImage/app/page.tsx +++ b/AppImage/app/page.tsx @@ -1,9 +1,7 @@ +"use client" + import { ProxmoxDashboard } from "../components/proxmox-dashboard" export default function Home() { - return ( -
- -
- ) + return }