24 lines
532 B
TypeScript
24 lines
532 B
TypeScript
import Link from "next/link";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<div className="flex">
|
|
<Link
|
|
href="/draw-io"
|
|
className="m-4 cursor-pointer rounded-md bg-blue-500 p-2 text-white"
|
|
>
|
|
Draw.io
|
|
</Link>
|
|
<Link
|
|
href="/unity"
|
|
className="m-4 cursor-pointer rounded-md bg-blue-500 p-2 text-white"
|
|
>
|
|
Unity
|
|
</Link>
|
|
</div>
|
|
<p>Next.js 및 tailwind css, 기타등등... 사용해보기</p>
|
|
</>
|
|
);
|
|
}
|