123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import React from 'react'
  2. import { Divider, Card } from "antd";
  3. import Page from "@/components/Page";
  4. import { useTranslation } from 'react-i18next';
  5. export default (props) => {
  6. const { t } = useTranslation();
  7. return (
  8. <div style={{ padding: '0 80px' }}>
  9. <Page>
  10. <Card style={{ marginBottom: '24px' }}>
  11. <div style={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between', padding: '0 24px' }}>
  12. <div style={{ textAlign: 'center' }}>
  13. <img src="https://qbitnetwork.com/app/img/register-img-1.f346588c.png" width="130px" />
  14. <div style={{ fontSize: '14px', fontWeight: 'bold' }}>
  15. {t('incorporation.title1')}
  16. </div>
  17. </div>
  18. <div style={{ border: '1px dashed #82ced2', width: '20vw' }} />
  19. <div style={{ textAlign: 'center' }}>
  20. <img src="https://qbitnetwork.com/app/img/register-img-2.cc735250.png" width="130px" />
  21. <div style={{ fontSize: '14px', fontWeight: 'bold' }}>
  22. {t('incorporation.title2')}
  23. </div>
  24. </div>
  25. <div style={{ border: '1px dashed #82ced2', width: '20vw' }} />
  26. <div style={{ textAlign: 'center' }}>
  27. <img src="https://qbitnetwork.com/app/img/register-img-3.b5b8bd86.png" width="130px" />
  28. <div style={{ fontSize: '14px', fontWeight: 'bold' }}>
  29. {t('incorporation.title3')}
  30. </div>
  31. </div>
  32. </div>
  33. </Card>
  34. <Card>
  35. <div style={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between', padding: '0 24px' }}>
  36. <div style={{ textAlign: 'center' }}>
  37. <img src="./img/step4.jpg" width="130px" />
  38. <div style={{ fontSize: '14px', fontWeight: 'bold' }}>
  39. {t('incorporation.title4')}
  40. </div>
  41. </div>
  42. <div style={{ border: '1px dashed #82ced2', width: '20vw' }} />
  43. <div style={{ textAlign: 'center' }}>
  44. <img src="./img/step5.jpg" width="130px" />
  45. <div style={{ fontSize: '14px', fontWeight: 'bold' }}>
  46. {t('incorporation.title5')}
  47. </div>
  48. </div>
  49. <div style={{ border: '1px dashed #82ced2', width: '20vw' }} />
  50. <div style={{ textAlign: 'center' }}>
  51. <img src="./img/step6.jpg" width="130px" />
  52. <div style={{ fontSize: '14px', fontWeight: 'bold' }}>
  53. {t('incorporation.title6')}
  54. </div>
  55. </div>
  56. </div>
  57. </Card>
  58. </Page>
  59. </div>
  60. )
  61. }