Mobile terminal

This commit is contained in:
LukeGus
2025-09-04 00:26:36 -05:00
parent c4e888dfce
commit 983cf7383e
6 changed files with 483 additions and 27 deletions

View File

@@ -1,7 +1,14 @@
import {Terminal} from "@/ui/Mobile/Apps/Terminal/Terminal.tsx";
export function MobileApp() {
return (
<div>
<h1>Mobile</h1>
<div className="h-screen w-screen bg-[#18181b]">
<Terminal hostConfig={{
ip: "n/a",
port: 22,
username: "n/a",
password: "n/a"
}} isVisible={true}/>
</div>
)
}