sinpin/app/routes/proxy.tsx

22 lines
587 B
TypeScript
Raw Permalink Normal View History

2026-01-08 16:19:27 +00:00
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 />
</>;
}