tiefen_space_share_web/app/page.jsx

24 lines
708 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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">&nbsp;&nbsp;&nbsp;&nbsp;</span>
<a className="text-xs text-white">
Copyright © 2023-2024 天津觅缘天使科技有限公司
</a>
</div>
</footer>
</section>
);
}