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 892B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
123456789101112131415161718192021222324252627282930313233
  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. 'bg-background-body',
  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-background-section-burn 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-text-tertiary'>
  25. © {new Date().getFullYear()} LangGenius, Inc. All rights reserved.
  26. </div>
  27. </div>
  28. </div>
  29. )
  30. }
  31. export default Install