Files
boss/src/app/auth/help/page.tsx

26 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { AppShell, PageNav, StatusBar } from "@/components/app-ui";
export default function AuthHelpPage() {
return (
<AppShell bottomNav={false}>
<StatusBar />
<PageNav title="登录帮助" backHref="/auth/login" />
<div className="space-y-3 px-[18px] pb-6">
<div className="rounded-2xl border border-[#E5E5EA] bg-white px-4 py-4 text-[13px] leading-6 text-[#57606A]">
</div>
<div className="rounded-2xl border border-[#E5E5EA] bg-white px-4 py-4 text-[13px] leading-6 text-[#57606A]">
`krisolo`
<br />
使
<br />
`最高管理员`
</div>
<div className="rounded-2xl bg-[#EAF7F0] px-4 py-4 text-[13px] leading-6 text-[#215B39]">
</div>
</div>
</AppShell>
);
}