page.tsx 827 B

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