修改footer

This commit is contained in:
yezian 2024-12-04 15:53:23 +08:00
parent ad5ce437e4
commit ce051cd1dc
1 changed files with 19 additions and 1 deletions

View File

@ -1,5 +1,23 @@
import React from "react";
export default function Home() {
return <section className="flex flex-col container"></section>;
return (
<section className="flex flex-col container">
<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-white"
>
津ICP备2023007056号-1
</a>
<span className="text-xs text-white">&nbsp;&nbsp;&nbsp;&nbsp;</span>
<a className="text-xs text-white">
Copyright © 2023-2024 天津觅缘天使科技有限公司
</a>
</div>
</footer>
</section>
);
}