16 lines
432 B
TypeScript
16 lines
432 B
TypeScript
"use client"
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className='max-w-full flex justify-center m-auto'>
|
|
<div className='hero-content text-center'>
|
|
<div className='max-w-md'>
|
|
<h1 className='text-5xl font-bold'>ipv6-test</h1>
|
|
<p className='py-6'>免费IPv6测试服务</p>
|
|
<button className='btn btn-primary'>探索更多</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|