Skip to content

Commit

Permalink
fix borders
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnyyvinay committed Feb 21, 2025
1 parent a2bf34a commit 2fd64c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/about/AboutContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default function AboutContent() {



{/* <ContentSection title="UPCOMING EVENTS">
<ContentSection title="UPCOMING EVENTS">
<div className="flex flex-col space-y-4">
{upcomingEvents.map((event, idx) => (
<UpcomingEventsCard
Expand All @@ -94,7 +94,7 @@ export default function AboutContent() {
eventTime={event.time}
location={event.location}
imgSrc={event.imgSrc}
className="border border-gray-300 rounded-md"
className="border-2 border-black rounded-2xl p-6"
/>
))}
</div>
Expand All @@ -108,11 +108,11 @@ export default function AboutContent() {
title={event.title}
description={event.description}
imgSrc={event.imgSrc}
className="border border-black-300 rounded-md p-4"
className="border-2 border-black rounded-2xl p-6"
/>
))}
</div>
</ContentSection> */}
</ContentSection>

</div>
</div>
Expand Down

0 comments on commit 2fd64c2

Please sign in to comment.