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"
|
|
|
|
|
>
|
2024-05-22 14:25:30 +08:00
|
|
|
|
冀ICP备2024071364号-1
|
2024-01-23 18:29:48 +08:00
|
|
|
|
</a>
|
|
|
|
|
<span className="text-xs text-secondary">
|
|
|
|
|
|
|
|
|
|
|
</span>
|
2024-05-22 14:25:30 +08:00
|
|
|
|
{/* <a
|
2024-01-23 18:29:48 +08:00
|
|
|
|
target="_blank"
|
|
|
|
|
href="https://beian.mps.gov.cn/#/query/webSearch?code=51015602000741"
|
|
|
|
|
className="text-xs text-secondary"
|
|
|
|
|
>
|
|
|
|
|
<span>川公网安备51015602000741 </span>
|
|
|
|
|
<Image src={beian} alt="beian" className="w-4" />
|
|
|
|
|
</a>
|
|
|
|
|
<span className="text-xs text-secondary">
|
|
|
|
|
|
|
2024-05-22 14:25:30 +08:00
|
|
|
|
</span> */}
|
2024-01-23 18:29:48 +08:00
|
|
|
|
<a className="text-xs text-secondary">
|
2024-05-10 14:50:49 +08:00
|
|
|
|
Copyright © 2023-2024 承德揽星网络科技有限公司
|
2024-01-23 18:29:48 +08:00
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
);
|
|
|
|
|
}
|