Update AppImage

This commit is contained in:
MacRimi
2025-11-21 18:36:09 +01:00
parent 23280fd97b
commit 5725d5a2fe
2 changed files with 22 additions and 9 deletions

View File

@@ -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">