feat: initial commit

This commit is contained in:
Iain Learmonth 2026-01-08 16:19:27 +00:00
commit 98355eceb5
18 changed files with 5416 additions and 0 deletions

21
app/routes/proxy.tsx Normal file
View file

@ -0,0 +1,21 @@
import type { Route } from "../+types/root";
import {CloudServerOutlined} from "@ant-design/icons";
import {Breadcrumb, Typography} from "antd";
import {Outlet} from "react-router";
const { Title } = Typography;
export function meta({}: Route.MetaArgs) {
return [
{ title: "Smart Proxy Administration" },
{ name: "description", content: "Hi!" },
];
}
export default function Proxy() {
return <>
<Title><CloudServerOutlined /> Smart Proxy</Title>
<Breadcrumb items={[{title: "Smart Proxy", href: "/proxy"}]} />
<Outlet />
</>;
}