Spaces:
Running
Running
gpt-engineer-app[bot]
commited on
Commit
·
8728aad
1
Parent(s):
13083aa
Refactor ConferenceCard layout
Browse filesChange the layout of the ConferenceCard component to display information in a single column instead of two columns. This improves readability and presentation.
src/components/ConferenceCard.tsx
CHANGED
@@ -45,7 +45,7 @@ const ConferenceCard = ({
|
|
45 |
{full_name && <p className="text-xs text-neutral-600 truncate">{full_name}</p>}
|
46 |
</div>
|
47 |
|
48 |
-
<div className="
|
49 |
<div className="flex items-center text-neutral">
|
50 |
<CalendarDays className="h-4 w-4 mr-2 flex-shrink-0" />
|
51 |
<span className="text-sm truncate">{date}</span>
|
|
|
45 |
{full_name && <p className="text-xs text-neutral-600 truncate">{full_name}</p>}
|
46 |
</div>
|
47 |
|
48 |
+
<div className="flex flex-col gap-2 mb-3">
|
49 |
<div className="flex items-center text-neutral">
|
50 |
<CalendarDays className="h-4 w-4 mr-2 flex-shrink-0" />
|
51 |
<span className="text-sm truncate">{date}</span>
|