We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c61f860 commit 077bbc6Copy full SHA for 077bbc6
src/components/UpcomingEventsList.tsx
@@ -104,14 +104,14 @@ const UpcomingEventsList = () => {
104
}
105
106
return (
107
- <div className="">
+ <div>
108
{Object.keys(monthGroupedEvents)
109
?.slice(0, maxRange)
110
?.map((month) => {
111
const events = monthGroupedEvents[month]
112
113
<div key={`events_in_${month}`}>
114
- <h3 className="py-8 text-2xl font-semibold">{month}</h3>
+ <h3 className="py-8">{month}</h3>
115
<div className="grid grid-cols-1 gap-5 md:grid-cols-2 lg:grid-cols-3">
116
{events.map(
117
(
0 commit comments