feat: initial commit
This commit is contained in:
commit
98355eceb5
18 changed files with 5416 additions and 0 deletions
21
app/routes/proxy.tsx
Normal file
21
app/routes/proxy.tsx
Normal 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 />
|
||||
</>;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue