35 lines
1.3 KiB
JavaScript
35 lines
1.3 KiB
JavaScript
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>
|
||
);
|
||
}
|