28 lines
876 B
TypeScript
28 lines
876 B
TypeScript
export default function Home() {
|
|
return (
|
|
<section className='min-h-screen flex flex-col'>
|
|
<main className="flex-1 flex flex-col items-center justify-center p-24">
|
|
<div className="z-10 w-full max-w-5xl items-center justify-between font-mono text-sm lg:flex">
|
|
<h2 className="text-5xl font-semibold my-0 mx-auto">
|
|
Ameison的网站
|
|
</h2>
|
|
</div>
|
|
</main>
|
|
<div className="my-4 mx-auto text-xs text-gray-400">
|
|
<span>Copyright © 2024-2025 </span>
|
|
<a className="text-blue-500" target="_blank" href="https://www.uuzs.cn">
|
|
uuzs.cn
|
|
</a>
|
|
<span> 版权所有 </span>
|
|
<a
|
|
className="text-blue-500"
|
|
target="_blank"
|
|
href="https://beian.miit.gov.cn/"
|
|
>
|
|
湘ICP备2024077497号
|
|
</a>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|