feature/advertizers_page #8

Merged
Yussif merged 2 commits from feature/advertizers_page into staging 2025-04-27 18:26:16 +00:00
Showing only changes of commit 99628c8627 - Show all commits

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>