完善认证功能,添加实名认证和回调处理逻辑

This commit is contained in:
2025-04-16 09:43:12 +08:00
parent 1f1f603523
commit d435d98887
8 changed files with 502 additions and 10 deletions

View File

@@ -32,16 +32,16 @@ export default async function DashboardLayout(props: DashboardLayoutProps) {
<header className={`flex-none basis-20 flex items-stretch`}>
{/* logo */}
<div className={`flex-none basis-60 flex items-center justify-center`}>
<Image src={logo} alt={`logo`} height={40}/>
<Link href={'/'}><Image src={logo} alt={`logo`} height={40}/></Link>
</div>
{/* title */}
<div className={`flex-auto overflow-hidden flex items-center`}>
<div className={`flex-auto overflow-hidden flex items-center pl-4`}>
</div>
{/* profile */}
<div className={`flex-none basis-80 flex items-center justify-end`}>
<div className={`flex-none basis-80 flex items-center justify-end pr-4`}>
<Profile/>
</div>
</header>