2025-06-07 11:49:57 +08:00
|
|
|
import {ReactNode} from 'react'
|
|
|
|
|
import {Metadata} from 'next'
|
2025-06-05 16:41:30 +08:00
|
|
|
|
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
|
|
|
return {
|
|
|
|
|
title: '套餐管理 - 蓝狐代理',
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type ResourcesLayoutProps = {
|
2025-06-07 11:49:57 +08:00
|
|
|
children: ReactNode
|
2025-06-05 16:41:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default async function ResourcesLayout(props: ResourcesLayoutProps) {
|
|
|
|
|
return props.children
|
2025-06-07 11:49:57 +08:00
|
|
|
}
|