DeekSeek.tsx 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import * as React from 'react';
  2. import { Chat } from './DeepSeekChat';
  3. import whiteLogo from "../icons/whiteLogo.png";
  4. import jkxz from "../icons/jkxz.png";
  5. import { useChatStore } from "../store";
  6. import './deepSeek.scss';
  7. const DeekSeek: React.FC = () => {
  8. const chatStore = useChatStore();
  9. React.useEffect(() => {
  10. chatStore.clearSessions();
  11. }, []);
  12. return (
  13. <div className='deekSeek'>
  14. <div className='deekSeek-header'>
  15. <div style={{ display: 'flex', alignItems: 'center', marginRight: 20 }}>
  16. <img src={whiteLogo.src} style={{ width: 20, marginRight: 10 }} />
  17. <div>
  18. 上海建科
  19. </div>
  20. </div>
  21. <div style={{ marginRight: 20, color: '#98b4fa' }}>
  22. 问答广场
  23. </div>
  24. <div style={{ marginRight: 20, color: '#98b4fa' }}>
  25. 文档对比
  26. </div>
  27. <div style={{ marginRight: 20, color: '#98b4fa' }}>
  28. 报批报建
  29. </div>
  30. <div style={{ marginRight: 20, color: '#98b4fa' }}>
  31. 施工方案审查
  32. </div>
  33. <div style={{ marginRight: 20, color: '#98b4fa' }}>
  34. OCR
  35. </div>
  36. <div style={{ marginRight: 20, color: '#98b4fa' }}>
  37. 后期扩展
  38. </div>
  39. <div style={{ color: '#98b4fa' }}>
  40. 行业趋势
  41. </div>
  42. </div>
  43. <div className='deekSeek-content'>
  44. <div className='deekSeek-content-title'>
  45. <img src={jkxz.src} />
  46. </div>
  47. <div className='deekSeek-content-title2'>
  48. 智能问答助手
  49. </div>
  50. <div className='deekSeek-content-outer'>
  51. <Chat />
  52. </div>
  53. </div>
  54. </div>
  55. );
  56. };
  57. export default DeekSeek;