page.tsx 841 B

1234567891011121314151617181920212223242526272829303132
  1. import React from 'react'
  2. import Header from '../signin/_header'
  3. import style from '../signin/page.module.css'
  4. import InstallForm from './installForm'
  5. import classNames from '@/utils/classnames'
  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()} LangGenius, Inc. All rights reserved.
  25. </div>
  26. </div>
  27. </div>
  28. )
  29. }
  30. export default Install