page.tsx 507 B

12345678910111213141516171819202122
  1. import React from 'react'
  2. import style from '../signin/page.module.css'
  3. import InitPasswordPopup from './InitPasswordPopup'
  4. import classNames from '@/utils/classnames'
  5. const Install = () => {
  6. return (
  7. <div className={classNames(
  8. style.background,
  9. 'flex w-full min-h-screen',
  10. 'p-4 lg:p-8',
  11. 'gap-x-20',
  12. 'justify-center lg:justify-start',
  13. )}>
  14. <div className="block m-auto w-96">
  15. <InitPasswordPopup />
  16. </div>
  17. </div>
  18. )
  19. }
  20. export default Install