rh-rhdata-customer-web/src/components/home/footer.jsx

35 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import React from "react";
import { Typography } from "antd";
const { Text } = Typography;
export default function HomeFooter() {
return (
<footer className="home-footer">
<div className="home-footer-inner">
<div className="home-footer-links">
<Text className="home-footer-link">联系我们</Text>
<span className="home-footer-sep">|</span>
<Text className="home-footer-link">隐私政策</Text>
<span className="home-footer-sep">|</span>
<Text className="home-footer-link">使用须知</Text>
<span className="home-footer-sep">|</span>
<Text className="home-footer-link">网站地图</Text>
</div>
<div className="home-footer-meta">
<Text>版权所有深圳火蚁木木科技有限公司</Text>
<Text>备案号注册中...</Text>
</div>
<div className="home-footer-meta">
<div className="home-footer-icp">
<span className="home-footer-icp-icon" aria-hidden="true" />
<Text>安备号注册中...</Text>
</div>
<Text>联系方式redhare@redhare.cc</Text>
<Text>办公地址深圳市南山区粤海街道海滨二路99号</Text>
</div>
</div>
</footer>
);
}