mirror of
https://github.com/langgenius/dify.git
synced 2026-08-30 04:23:20 +08:00
11 lines
320 B
TypeScript
11 lines
320 B
TypeScript
import { getRouteMetadata } from '@/app/route-metadata'
|
|
import SignupLayout from './signup-layout'
|
|
|
|
export function generateMetadata() {
|
|
return getRouteMetadata('login', ($) => $['signup.createAccount'])
|
|
}
|
|
|
|
export default function RegisterLayout({ children }: any) {
|
|
return <SignupLayout>{children}</SignupLayout>
|
|
}
|