Skip to content

Commit

Permalink
Move title inside right container
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbermanssw committed Dec 2, 2024
1 parent ae489ee commit 13cbe62
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/blocks/Events/Events.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,6 @@ const EventsBlock = () => {

return (
<div className="md:px-18 lg:px-10 px-3 md:w-4/5 lg:w-5/6 w-full mx-auto pb-4 pt-8">
<h1 className="pl-3 font-tuner text-3xl lg:text-5xl bg-gradient-to-br from-blue-600/80 via-blue-800/80 to-blue-1000 bg-clip-text text-transparent text-left mt-10 pb-12">
{eventsData.title}
</h1>
<div className="flex flex-col lg:flex-row lg:gap-4">
<div
className="w-full hidden md:flex lg:w-1/2 justify-center items-center rounded-lg"
Expand All @@ -209,6 +206,9 @@ const EventsBlock = () => {
)}
</div>
<div className="flex flex-col w-full lg:w-1/2 justify-center">
<h1 className="pl-3 font-tuner text-2xl lg:text-5xl bg-gradient-to-br from-blue-600/80 via-blue-800/80 to-blue-1000 bg-clip-text text-transparent text-left mt-10 pb-12">
{eventsData.title}
</h1>
{filteredEvents.map((cardItem, index) => (
<Card
key={index}
Expand All @@ -218,7 +218,7 @@ const EventsBlock = () => {
))}
<Link
href="/events"
className="pt-10 mb-10 font-bold flex items-center justify-center gap-2"
className="pt-10 mb-10 font-bold flex items-center justify-end gap-2"
>
<span className="bg-gradient-to-br text-md from-blue-600 via-blue-800 to-blue-1000 bg-clip-text text-transparent">
SEE ALL EVENTS
Expand Down

0 comments on commit 13cbe62

Please sign in to comment.