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
}