2026-09-08 15:42:28 +00:00
|
|
|
import { AccountPanel } from "@/components/account-panel";
|
2026-09-08 09:20:15 +00:00
|
|
|
|
|
|
|
|
export const metadata = { title: "账户中心" };
|
|
|
|
|
|
|
|
|
|
export default function AccountPage() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="container-shell py-16 sm:py-24">
|
|
|
|
|
<div className="flex flex-col justify-between gap-5 border-b border-line pb-10 sm:flex-row sm:items-end"><div><p className="eyebrow eyebrow-blue">Account</p><h1 className="mt-5 text-4xl font-semibold tracking-[-0.05em]">账户中心</h1></div><span className="text-sm text-subtle">未登录状态预览</span></div>
|
2026-09-08 15:42:28 +00:00
|
|
|
<AccountPanel />
|
2026-09-08 09:20:15 +00:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|