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.

page.tsx 679B

1234567891011121314151617181920
  1. import React from 'react'
  2. import Header from '../signin/_header'
  3. import ActivateForm from './activateForm'
  4. import cn from '@/utils/classnames'
  5. const Activate = () => {
  6. return (
  7. <div className={cn('flex min-h-screen w-full justify-center bg-background-default-burn p-6')}>
  8. <div className={cn('flex w-full shrink-0 flex-col rounded-2xl border border-effects-highlight bg-background-default-subtle')}>
  9. <Header />
  10. <ActivateForm />
  11. <div className='px-8 py-6 text-sm font-normal text-text-tertiary'>
  12. © {new Date().getFullYear()} LangGenius, Inc. All rights reserved.
  13. </div>
  14. </div>
  15. </div>
  16. )
  17. }
  18. export default Activate