Files
gitlab-instance-0a899031_cn…/app/[locale]/digital/profile/page.tsx
root 9de2465793 s
2026-06-07 15:57:47 +08:00

22 lines
537 B
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 type { Metadata } from "next";
import Header from "../../../digital/components/Header";
import Footer from "../../../digital/components/Footer";
import ProfileContent from "./ProfileContent";
export const metadata: Metadata = {
title: "个人资料 | Profile",
description: "数字游民指南账户中心管理登录状态、VIP 权益和功能入口。",
};
export default function ProfilePage() {
return (
<>
<Header />
<main>
<ProfileContent />
</main>
<Footer />
</>
);
}