page.tsx 880 B

123456789101112131415161718192021222324252627282930313233343536
  1. import React from 'react'
  2. import InstallForm from './installForm'
  3. import Header from '../signin/_header'
  4. import style from '../signin/page.module.css'
  5. import classNames from 'classnames'
  6. const SignIn = () => {
  7. return (
  8. <>
  9. <div className={classNames(
  10. style.background,
  11. 'flex w-full min-h-screen',
  12. 'p-4 lg:p-8',
  13. 'gap-x-20',
  14. 'justify-center lg:justify-start'
  15. )}>
  16. <div className={
  17. classNames(
  18. 'flex w-full flex-col bg-white shadow rounded-2xl shrink-0',
  19. 'md:w-[608px] space-between'
  20. )
  21. }>
  22. <Header />
  23. <InstallForm />
  24. <div className='px-8 py-6 text-sm font-normal text-gray-500'>
  25. © {new Date().getFullYear()} Dify, Inc. All rights reserved.
  26. </div>
  27. </div>
  28. </div>
  29. </>
  30. )
  31. }
  32. export default SignIn