Spaces:
Running
Running
gpt-engineer-app[bot]
commited on
Commit
·
13083aa
1
Parent(s):
b656d51
Improve Conference Card Layout
Browse filesMake conference card data display horizontally on the same height. Adjust the size of the bottom tiles to achieve this.
- src/components/ConferenceCard.tsx +27 -34
- src/index.css +2 -2
src/components/ConferenceCard.tsx
CHANGED
@@ -29,56 +29,49 @@ const ConferenceCard = ({
|
|
29 |
|
30 |
return (
|
31 |
<div className="conference-card">
|
32 |
-
<div className="
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
>
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
{full_name && <p className="text-sm text-neutral-600">{full_name}</p>}
|
47 |
-
</div>
|
48 |
</div>
|
49 |
|
50 |
-
<div className="
|
51 |
<div className="flex items-center text-neutral">
|
52 |
-
<CalendarDays className="h-4 w-4 mr-2" />
|
53 |
-
<span className="text-sm">{date}</span>
|
54 |
</div>
|
55 |
<div className="flex items-center text-neutral">
|
56 |
-
<Globe className="h-4 w-4 mr-2" />
|
57 |
-
<span className="text-sm">{place}</span>
|
58 |
</div>
|
59 |
<div className="flex items-center text-neutral">
|
60 |
-
<Clock className="h-4 w-4 mr-2" />
|
61 |
-
<span className="text-sm">
|
62 |
-
|
63 |
</span>
|
64 |
-
{abstract_deadline && (
|
65 |
-
<span className="text-sm text-red-500 ml-2">
|
66 |
-
Abstract: {abstract_deadline}
|
67 |
-
</span>
|
68 |
-
)}
|
69 |
</div>
|
70 |
<div className="flex items-center">
|
71 |
-
<AlarmClock className={`h-4 w-4 mr-2 ${getCountdownColor()}`} />
|
72 |
-
<span className={`text-sm font-medium ${getCountdownColor()}`}>
|
73 |
{daysLeft}
|
74 |
</span>
|
75 |
</div>
|
76 |
</div>
|
77 |
|
78 |
{Array.isArray(tags) && tags.length > 0 && (
|
79 |
-
<div className="flex flex-wrap gap-
|
80 |
{tags.map((tag) => (
|
81 |
-
<span key={tag} className="tag">
|
82 |
<Tag className="h-3 w-3 mr-1" />
|
83 |
{tag}
|
84 |
</span>
|
@@ -88,7 +81,7 @@ const ConferenceCard = ({
|
|
88 |
|
89 |
{note && (
|
90 |
<div
|
91 |
-
className="text-
|
92 |
dangerouslySetInnerHTML={{ __html: note }}
|
93 |
/>
|
94 |
)}
|
|
|
29 |
|
30 |
return (
|
31 |
<div className="conference-card">
|
32 |
+
<div className="mb-3">
|
33 |
+
{link ? (
|
34 |
+
<a
|
35 |
+
href={link}
|
36 |
+
target="_blank"
|
37 |
+
rel="noopener noreferrer"
|
38 |
+
className="hover:underline"
|
39 |
+
>
|
40 |
+
<h3 className="text-lg font-semibold text-primary">{title}</h3>
|
41 |
+
</a>
|
42 |
+
) : (
|
43 |
+
<h3 className="text-lg font-semibold">{title}</h3>
|
44 |
+
)}
|
45 |
+
{full_name && <p className="text-xs text-neutral-600 truncate">{full_name}</p>}
|
|
|
|
|
46 |
</div>
|
47 |
|
48 |
+
<div className="grid grid-cols-2 gap-x-4 gap-y-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>
|
52 |
</div>
|
53 |
<div className="flex items-center text-neutral">
|
54 |
+
<Globe className="h-4 w-4 mr-2 flex-shrink-0" />
|
55 |
+
<span className="text-sm truncate">{place}</span>
|
56 |
</div>
|
57 |
<div className="flex items-center text-neutral">
|
58 |
+
<Clock className="h-4 w-4 mr-2 flex-shrink-0" />
|
59 |
+
<span className="text-sm truncate">
|
60 |
+
{deadline === 'TBD' ? 'TBD' : deadline}
|
61 |
</span>
|
|
|
|
|
|
|
|
|
|
|
62 |
</div>
|
63 |
<div className="flex items-center">
|
64 |
+
<AlarmClock className={`h-4 w-4 mr-2 flex-shrink-0 ${getCountdownColor()}`} />
|
65 |
+
<span className={`text-sm font-medium truncate ${getCountdownColor()}`}>
|
66 |
{daysLeft}
|
67 |
</span>
|
68 |
</div>
|
69 |
</div>
|
70 |
|
71 |
{Array.isArray(tags) && tags.length > 0 && (
|
72 |
+
<div className="flex flex-wrap gap-1 mt-auto">
|
73 |
{tags.map((tag) => (
|
74 |
+
<span key={tag} className="tag text-xs py-0.5">
|
75 |
<Tag className="h-3 w-3 mr-1" />
|
76 |
{tag}
|
77 |
</span>
|
|
|
81 |
|
82 |
{note && (
|
83 |
<div
|
84 |
+
className="text-xs text-neutral-600 mt-2"
|
85 |
dangerouslySetInnerHTML={{ __html: note }}
|
86 |
/>
|
87 |
)}
|
src/index.css
CHANGED
@@ -33,11 +33,11 @@
|
|
33 |
}
|
34 |
|
35 |
.conference-card {
|
36 |
-
@apply bg-white rounded-lg shadow-sm hover:shadow-md transition-shadow duration-300 p-
|
37 |
}
|
38 |
|
39 |
.tag {
|
40 |
-
@apply inline-flex items-center px-
|
41 |
}
|
42 |
|
43 |
.countdown {
|
|
|
33 |
}
|
34 |
|
35 |
.conference-card {
|
36 |
+
@apply bg-white rounded-lg shadow-sm hover:shadow-md transition-shadow duration-300 p-4 flex flex-col;
|
37 |
}
|
38 |
|
39 |
.tag {
|
40 |
+
@apply inline-flex items-center px-2 py-1 rounded-full text-sm font-medium bg-primary/10 text-primary;
|
41 |
}
|
42 |
|
43 |
.countdown {
|