mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-11-22 13:36:17 +00:00
Update AppImage
This commit is contained in:
33
AppImage/app/terminal/page.tsx
Normal file
33
AppImage/app/terminal/page.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user