blob: 3b254f7f693fcb50501a0a3dcd28e7709e83ace2 (
plain)
1
2
3
4
5
6
7
8
|
// import Image from 'next/image'
export default function Home() {
return (
<button className="inline-block cursor-pointer rounded-md bg-gray-800 px-4 py-3 text-center text-sm font-semibold uppercase text-white transition duration-200 ease-in-out hover:bg-gray-900">Button</button>
);
}
|