Add first iteration of ssh proxy

This commit is contained in:
Owen
2026-05-11 16:53:03 -07:00
parent 57701e13eb
commit dc00668cbe
5 changed files with 399 additions and 3 deletions

11
src/app/ssh/page.tsx Normal file
View File

@@ -0,0 +1,11 @@
import SshClient from "./SshClient";
export const dynamic = "force-dynamic";
export const metadata = {
title: "SSH Terminal"
};
export default function SshPage() {
return <SshClient />;
}