变更图标和title提示完善账户总览页面

This commit is contained in:
Eamon-meng
2025-06-05 16:41:30 +08:00
parent 39975e4349
commit c17c17724f
18 changed files with 434 additions and 137 deletions

View File

@@ -0,0 +1,17 @@
import { ReactNode } from 'react'
import { Metadata } from 'next'
export async function generateMetadata(): Promise<Metadata> {
return {
title: '个人中心 - 蓝狐代理',
}
}
export type ProfileLayoutProps = {
children: ReactNode
}
export default async function ProfileLayout(props: ProfileLayoutProps) {
return props.children
}