page.tsx 820 B

123456789101112131415161718192021222324252627282930313233343536
  1. import React from 'react'
  2. import cn from 'classnames'
  3. import Forms from './forms'
  4. import Header from './_header'
  5. import style from './page.module.css'
  6. const SignIn = () => {
  7. return (
  8. <>
  9. <div className={cn(
  10. style.background,
  11. 'flex w-full min-h-screen',
  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 flex-col bg-white shadow rounded-2xl shrink-0',
  19. 'space-between',
  20. )
  21. }>
  22. <Header />
  23. <Forms />
  24. <div className='px-8 py-6 text-sm font-normal text-gray-500'>
  25. © {new Date().getFullYear()} LangGenius, Inc. All rights reserved.
  26. </div>
  27. </div>
  28. </div>
  29. </>
  30. )
  31. }
  32. export default SignIn