变更图标和title提示完善账户总览页面
This commit is contained in:
17
src/app/admin/resources/layout.tsx
Normal file
17
src/app/admin/resources/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 ResourcesLayoutProps = {
|
||||
children: ReactNode
|
||||
}
|
||||
|
||||
export default async function ResourcesLayout(props: ResourcesLayoutProps) {
|
||||
return props.children
|
||||
}
|
||||
Reference in New Issue
Block a user