nextjs-test/app/page.tsx

24 lines
532 B
TypeScript

import Link from "next/link";
export default function Home() {
return (
<>
<div className="flex">
<Link
href="/draw-io"
className="bg-blue-500 p-2 rounded-md text-white cursor-pointer m-4"
>
Draw.io
</Link>
<Link
href="/unity"
className="bg-blue-500 p-2 rounded-md text-white cursor-pointer m-4"
>
Unity
</Link>
</div>
<p>Next.js tailwind css, ... </p>
</>
);
}