You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.tsx 1.6 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import { Button } from 'antd';
  2. import styles from './index.less';
  3. function WorkspaceIntro() {
  4. return (
  5. <div className={styles['workspace-intro']}>
  6. <div className={styles['workspace-intro__left']}>
  7. <div className={styles['workspace-intro__title']}>自主实验平台</div>
  8. <div className={styles['workspace-intro__content']}>
  9. 材料领域的自主实验系统是一种用于材料研究和开发的技术平台,它旨在提供实验数据收集、分析和可视化等功能,
  10. 以支持材料工程师、科学家和研究人员在材料设计、性能评估和工艺优化方面的工作
  11. </div>
  12. <div className={styles['workspace-intro__buttons']}>
  13. <Button
  14. type="primary"
  15. style={{ marginRight: '20px' }}
  16. icon={
  17. <img src={require('@/assets/img/functional-material.png')} width={19} height={19} />
  18. }
  19. >
  20. 功能材料自主实验系统
  21. </Button>
  22. <Button
  23. type="default"
  24. icon={
  25. <img src={require('@/assets/img/molecular-material.png')} width={19} height={19} />
  26. }
  27. >
  28. 分子材料自主实验系统
  29. </Button>
  30. </div>
  31. </div>
  32. <div className={styles['workspace-intro__right']}>
  33. <img
  34. className={styles['workspace-intro__icon']}
  35. src={require('@/assets/img/workspace-intro-icon.png')}
  36. />
  37. </div>
  38. </div>
  39. );
  40. }
  41. export default WorkspaceIntro;