24 lines
708 B
JavaScript
24 lines
708 B
JavaScript
import React from "react";
|
||
|
||
export default function Home() {
|
||
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>
|
||
);
|
||
}
|