修改footer
This commit is contained in:
parent
ad5ce437e4
commit
ce051cd1dc
20
app/page.jsx
20
app/page.jsx
|
@ -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"> | </span>
|
||||
<a className="text-xs text-white">
|
||||
Copyright © 2023-2024 天津觅缘天使科技有限公司
|
||||
</a>
|
||||
</div>
|
||||
</footer>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue