mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-10 17:01:50 +08:00
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
'use client'
|
|
import Header from '../signin/_header'
|
|
import style from '../signin/page.module.css'
|
|
|
|
import cn from '@/utils/classnames'
|
|
import { useGlobalPublicStore } from '@/context/global-public-context'
|
|
|
|
export default function SignInLayout({ children }: any) {
|
|
const { systemFeatures } = useGlobalPublicStore()
|
|
return <>
|
|
<div className={cn(
|
|
style.background,
|
|
'flex w-full min-h-screen',
|
|
'sm:p-4 lg:p-8',
|
|
'gap-x-20',
|
|
'justify-center lg:justify-start',
|
|
)}>
|
|
<div className={
|
|
cn(
|
|
'flex w-full flex-col bg-white shadow rounded-2xl shrink-0',
|
|
'space-between',
|
|
)
|
|
}>
|
|
<Header />
|
|
<div className={
|
|
cn(
|
|
'flex flex-col items-center w-full grow justify-center',
|
|
'px-6',
|
|
'md:px-[108px]',
|
|
)
|
|
}>
|
|
<div className='flex flex-col md:w-[400px]'>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
{!systemFeatures.branding.enabled && <div className='px-8 py-6 system-xs-regular text-text-tertiary'>
|
|
© {new Date().getFullYear()} LangGenius, Inc. All rights reserved.
|
|
</div>}
|
|
</div>
|
|
</div>
|
|
</>
|
|
}
|