变更图标和title提示完善账户总览页面
This commit is contained in:
17
src/app/admin/profile/layout.tsx
Normal file
17
src/app/admin/profile/layout.tsx
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user