This commit is contained in:
saani 2025-04-27 18:19:26 +00:00
parent 7e7bda38bc
commit 99628c8627

View File

@ -49,7 +49,7 @@ const Page: React.FC = () => {
{categories.map((category) => (
<button
key={category}
className={`px-5 py-2 rounded-md ${
className={`px-5 py-2 rounded-md cursor-pointer duration-300 ${
selectedCategory === category
? "bg-black text-white"
: "bg-white text-black"
@ -67,16 +67,16 @@ const Page: React.FC = () => {
key={index}
className="flex w-full h-full flex-col items-center justify-start rounded-md"
>
<Image
key={index}
src={image}
alt="advertizers"
width={1290}
height={280}
/>
<button className="px-15 py-1 border border-slate-800 rounded">
List in Ebook
</button>
<Image
key={index}
src={image}
alt="advertizers"
width={1290}
height={280}
/>
<button className="px-15 py-1 border border-slate-800 rounded cursor-pointer">
List in Ebook
</button>
</div>
))}
</div>