nextjs-tailwindcss-headless.../app/page.tsx
2023-08-25 21:53:07 +08:00

12 lines
273 B
TypeScript

import Link from "next/link";
export default function Home() {
return (
<div className='text-center mt-10 border hover:bg-gray-700'>
<Link href={'/components'}>
<button>components</button>
</Link>
</div>
)
}