You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233
  1. import React from 'react'
  2. import Header from '../signin/_header'
  3. import style from '../signin/page.module.css'
  4. import ActivateForm from './activateForm'
  5. import cn from '@/utils/classnames'
  6. const Activate = () => {
  7. return (
  8. <div className={cn(
  9. 'bg-background-body',
  10. style.background,
  11. 'flex min-h-screen w-full',
  12. 'sm:p-4 lg:p-8',
  13. 'gap-x-20',
  14. 'justify-center lg:justify-start',
  15. )}>
  16. <div className={
  17. cn(
  18. 'flex w-full shrink-0 flex-col rounded-2xl bg-background-section-burn shadow',
  19. 'space-between',
  20. )
  21. }>
  22. <Header />
  23. <ActivateForm />
  24. <div className='px-8 py-6 text-sm font-normal text-text-tertiary'>
  25. © {new Date().getFullYear()} LangGenius, Inc. All rights reserved.
  26. </div>
  27. </div>
  28. </div>
  29. )
  30. }
  31. export default Activate