nextjs-tailwindcss-headless.../app/page.tsx

12 lines
273 B
TypeScript
Raw Normal View History

2023-08-25 21:53:07 +08:00
import Link from "next/link";
2023-08-25 12:43:48 +08:00
export default function Home() {
2023-08-25 13:14:23 +08:00
return (
2023-08-25 21:53:07 +08:00
<div className='text-center mt-10 border hover:bg-gray-700'>
<Link href={'/components'}>
<button>components</button>
</Link>
</div>
2023-08-25 13:14:23 +08:00
)
}