变更图标和title提示完善账户总览页面
This commit is contained in:
17
src/app/admin/channels/layout.tsx
Normal file
17
src/app/admin/channels/layout.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
import { ReactNode } from 'react'
|
||||
import { Metadata } from 'next'
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
return {
|
||||
title: 'IP管理 - 蓝狐代理',
|
||||
}
|
||||
}
|
||||
|
||||
export type ChannelsLayoutProps = {
|
||||
children: ReactNode
|
||||
}
|
||||
|
||||
export default async function ChannelsLayout(props: ChannelsLayoutProps) {
|
||||
return props.children
|
||||
}
|
||||
Reference in New Issue
Block a user