FooterBar.tsx 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import { Link } from "react-router";
  2. import { Layout, Row, Col, Typography } from "antd";
  3. import BeiAn from "../general/BeiAn";
  4. import Feedback from "../general/Feedback";
  5. import { useIntl } from "react-intl";
  6. const { Footer } = Layout;
  7. const { Paragraph } = Typography;
  8. const FooterBarWidget = () => {
  9. const intl = useIntl();
  10. return (
  11. <Footer>
  12. <Row>
  13. <Col span={8}>
  14. <Paragraph strong>相关链接</Paragraph>
  15. <ul>
  16. <li>
  17. <Link to="www.github.com/iapt-platform/mint" target="_blank">
  18. wikipali in github
  19. </Link>
  20. </li>
  21. <li>nissaya project</li>
  22. </ul>
  23. </Col>
  24. <Col span={16}>
  25. <Paragraph strong>
  26. {intl.formatMessage({
  27. id: "labels.feedback",
  28. })}
  29. </Paragraph>
  30. <Feedback />
  31. </Col>
  32. </Row>
  33. <Row>
  34. <Col>
  35. <BeiAn />
  36. </Col>
  37. </Row>
  38. </Footer>
  39. );
  40. };
  41. export default FooterBarWidget;