export default function BasicButton() {
return (
<div className=" h-screen w-screen flex items-center justify-center">
<button className=" bg-[#111111] text-white py-5 px-24 rounded-full hover:opacity-60 transition duration-300 ease-in-out">
Add To Bag
</button>
</div>
);
}
Read-only