Update AppImage

This commit is contained in:
MacRimi
2025-11-21 18:32:10 +01:00
parent fe6679f16a
commit 23280fd97b
7 changed files with 477 additions and 70 deletions

View File

@@ -0,0 +1,33 @@
"use client"
import { TerminalPanel } from "@/components/terminal-panel"
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import { TerminalIcon } from "lucide-react"
export default function TerminalPage() {
return (
<div className="min-h-screen bg-background p-6">
<div className="max-w-7xl mx-auto space-y-6">
<div className="flex items-center gap-3">
<TerminalIcon className="h-8 w-8 text-primary" />
<div>
<h1 className="text-3xl font-bold">System Terminal</h1>
<p className="text-muted-foreground">Execute commands and manage your Proxmox system</p>
</div>
</div>
<Card className="h-[calc(100vh-200px)]">
<CardHeader>
<CardTitle>Interactive Shell</CardTitle>
<CardDescription>
Full bash terminal with support for all system commands. Use touch gestures or keyboard shortcuts.
</CardDescription>
</CardHeader>
<CardContent className="h-[calc(100%-80px)]">
<TerminalPanel />
</CardContent>
</Card>
</div>
</div>
)
}