2024-12-04 14:14:25 +08:00
|
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
|
|
export default function Home() {
|
2024-12-04 15:53:23 +08:00
|
|
|
|
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>
|
|
|
|
|
);
|
2024-12-04 14:14:25 +08:00
|
|
|
|
}
|