mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-11-22 13:36:17 +00:00
Update AppImage
This commit is contained in:
@@ -1,9 +1,16 @@
|
||||
"use client"
|
||||
|
||||
import { TerminalPanel } from "@/components/terminal-panel"
|
||||
import dynamic from "next/dynamic"
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
|
||||
import { TerminalIcon } from "lucide-react"
|
||||
|
||||
const TerminalPanel = dynamic(() => import("@/components/terminal-panel").then((mod) => mod.TerminalPanel), {
|
||||
ssr: false,
|
||||
loading: () => (
|
||||
<div className="flex items-center justify-center h-full">
|
||||
<div className="text-muted-foreground">Loading terminal...</div>
|
||||
</div>
|
||||
),
|
||||
})
|
||||
|
||||
export default function TerminalPage() {
|
||||
return (
|
||||
<div className="min-h-screen bg-background p-6">
|
||||
|
||||
Reference in New Issue
Block a user