2023-07-14 11:19:26 +08:00
|
|
|
import React from 'react'
|
|
|
|
import Header from '../signin/_header'
|
|
|
|
import style from '../signin/page.module.css'
|
|
|
|
import ActivateForm from './activateForm'
|
2024-07-09 15:05:40 +08:00
|
|
|
import cn from '@/utils/classnames'
|
2023-07-14 11:19:26 +08:00
|
|
|
|
|
|
|
const Activate = () => {
|
|
|
|
return (
|
|
|
|
<div className={cn(
|
2025-03-31 10:28:19 +08:00
|
|
|
'bg-background-body',
|
2023-07-14 11:19:26 +08:00
|
|
|
style.background,
|
2025-03-21 17:41:03 +08:00
|
|
|
'flex min-h-screen w-full',
|
2023-07-14 11:19:26 +08:00
|
|
|
'sm:p-4 lg:p-8',
|
|
|
|
'gap-x-20',
|
|
|
|
'justify-center lg:justify-start',
|
|
|
|
)}>
|
|
|
|
<div className={
|
|
|
|
cn(
|
2025-03-31 10:28:19 +08:00
|
|
|
'flex w-full shrink-0 flex-col rounded-2xl bg-background-section-burn shadow',
|
2023-07-14 11:19:26 +08:00
|
|
|
'space-between',
|
|
|
|
)
|
|
|
|
}>
|
|
|
|
<Header />
|
|
|
|
<ActivateForm />
|
2025-03-31 10:28:19 +08:00
|
|
|
<div className='px-8 py-6 text-sm font-normal text-text-tertiary'>
|
2024-09-26 17:53:11 +08:00
|
|
|
© {new Date().getFullYear()} LangGenius, Inc. All rights reserved.
|
2023-07-14 11:19:26 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Activate
|