panel-web/apps/user/components/main/HomeContent.tsx
2025-07-25 06:45:54 -07:00

31 lines
1.0 KiB
TypeScript
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 { Button } from '@workspace/ui/components/button';
export default function HomeContent() {
return (
<div className='flex min-h-[calc(100vh-73px)] flex-col items-center justify-center pt-8'>
{/* 大标题 */}
<h1 className='mb-10 text-6xl font-extrabold leading-tight text-white'>
<br />
<br />
</h1>
{/* 副标题 */}
<div className='mb-16 text-center text-sm font-bold leading-6 text-white'>
<p>
<span className='mr-2 text-xs text-white'>
Airo<sup className='text-[8px]'></sup>Port
</span>
<span></span>
</p>
<p></p>
</div>
{/* 按钮 */}
<Button className='mb-8 h-[64px] w-[219px] rounded-full border-2 border-white bg-white/10 text-2xl font-bold text-white transition hover:bg-white/20'>
</Button>
</div>
);
}