Skip to content

Commit 661b03d

Browse files
authored
Feat/setup next intl
Feat/setup next intl
2 parents e674988 + 4e614cb commit 661b03d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/features/events/components/Card.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ const CardEvent: FC<{ data: EventType }> = ({ data }) => {
2121
height={150}
2222
className="hidden md:block rounded-l-lg object-cover w-64 min-h-36"
2323
/>
24-
<div className="w-full bg-black/70 py-4">
24+
<div className="w-full py-4">
2525
<CardContent className="pb-0">
2626
<Badge className="mb-2" variant={`${status}`}>
2727
{status}
2828
</Badge>
2929
<h2 className="text-base sm:text-xl font-bold text-hmc-blue-600">{title}</h2>
30-
<p className="text-gray-100">{date_event}</p>
30+
<p>{date_event}</p>
3131
</CardContent>
32-
<CardFooter className="flex flex-wrap gap-2 text-gray-200 mt-2 pb-2 sm:flex-row">
32+
<CardFooter className="flex flex-wrap gap-2 mt-2 pb-2 sm:flex-row">
3333
<div className="flex items-center gap-2">
3434
<Clock size={15} />
3535
<p className="text-sm text-nowrap">{duration}</p>

0 commit comments

Comments
 (0)