45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
import Link from 'next/link'
|
|
import User from '@/components/User'
|
|
|
|
export default async function Home() {
|
|
return (
|
|
<>
|
|
<div className="flex flex-col items-center p-4">
|
|
<h1 className="text-4xl font-bold">Index</h1>
|
|
|
|
<div className="p-4">
|
|
<Link href="/counter">
|
|
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Zustand Counter Example</button>
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="p-4">
|
|
<Link href="/login">
|
|
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Session Login Example</button>
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="p-4">
|
|
<Link href="/suitable">
|
|
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">적합성 예제</button>
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="p-4">
|
|
<Link href="/pdf-download">
|
|
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">PDF 다운로드</button>
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="p-4">
|
|
<Link href="/survey-sales">
|
|
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">조사 매물</button>
|
|
</Link>
|
|
</div>
|
|
|
|
<User />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|