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.

123456789101112131415161718192021222324252627282930
  1. import React from 'react'
  2. import style from '../signin/page.module.css'
  3. import InitPasswordPopup from './InitPasswordPopup'
  4. import cn from '@/utils/classnames'
  5. const Install = () => {
  6. return (
  7. <div className={cn(
  8. 'bg-background-body',
  9. style.background,
  10. 'flex min-h-screen w-full',
  11. 'p-4 lg:p-8',
  12. 'gap-x-20',
  13. 'justify-center lg:justify-start',
  14. )}>
  15. <div className={
  16. cn(
  17. 'flex w-full shrink-0 flex-col rounded-2xl bg-background-section-burn shadow',
  18. 'space-between',
  19. )
  20. }>
  21. <div className="m-auto block w-96">
  22. <InitPasswordPopup />
  23. </div>
  24. </div>
  25. </div>
  26. )
  27. }
  28. export default Install