tiefen_space_web/components/Footer/index.jsx

26 lines
721 B
React
Raw Normal View History

2024-01-23 18:29:48 +08:00
import React from "react";
import beian from "@/public/images/beian.png";
import Image from "next/image";
export default function Footer() {
return (
<footer className="w-full px-4 py-4 z-10">
<div className="flex flex-row flex-wrap justify-center items-center">
<a
target="_blank"
href="http://beian.miit.gov.cn"
className="text-xs text-secondary"
>
蜀ICP备2024076396号-1
2024-01-23 18:29:48 +08:00
</a>
<span className="text-xs text-secondary">
&nbsp;&nbsp;&nbsp;&nbsp;
</span>
<a className="text-xs text-secondary">
Copyright © 2024 成都多塔文化传媒有限公司
2024-01-23 18:29:48 +08:00
</a>
</div>
</footer>
);
}