11{{ define "main" }}
22
33<!-- Calendar Header -->
4- < section class ="bg-gradient-to-r from-purple-600 to-purple-800 py-16 ">
4+ < section class ="bg-gradient-to-r from-purple-600 to-purple-800 py-10 ">
55 < div class ="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 ">
66 < div class ="text-center text-white ">
7- < div class ="w-20 h-20 mx-auto mb-6 bg-white bg-opacity-20 rounded-full flex items-center justify-center ">
7+ < div class ="w-16 h-16 mx-auto mb-4 bg-white bg-opacity-20 rounded-full flex items-center justify-center ">
88 < i class ="fas fa-calendar-alt text-3xl "> </ i >
99 </ div >
10- < h1 class ="text-4xl lg:text-5xl font-bold mb-4 "> {{ .Title }}</ h1 >
10+ < h1 class ="text-4xl lg:text-5xl font-bold mb-2 "> {{ .Title }}</ h1 >
1111 < p class ="text-xl opacity-90 max-w-2xl mx-auto "> {{ .Params.description }}</ p >
1212 </ div >
1313 </ div >
1414</ section >
1515
1616<!-- Upcoming Events -->
17- < section class ="py-16 bg-white ">
17+ < section class ="py-10 bg-white ">
1818 < div class ="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 ">
1919
2020 {{/* Sort events by start_date and split into upcoming vs past */}}
@@ -35,15 +35,15 @@ <h1 class="text-4xl lg:text-5xl font-bold mb-4">{{ .Title }}</h1>
3535 {{ end }}
3636
3737 <!-- Upcoming Events -->
38- < div class ="flex items-center mb-8 ">
38+ < div class ="flex items-center mb-6 ">
3939 < div class ="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mr-4 ">
4040 < i class ="fas fa-calendar-check text-2xl text-purple-600 "> </ i >
4141 </ div >
4242 < h2 class ="text-3xl font-bold text-gray-900 "> Upcoming Events</ h2 >
4343 </ div >
4444
4545 {{ if $upcoming }}
46- < div class ="space-y-6 mb-16 ">
46+ < div class ="space-y-5 mb-10 ">
4747 {{ range $upcoming }}
4848 < a href ="{{ .url }} " target ="_blank " rel ="noopener "
4949 class ="block bg-gray-50 rounded-xl border border-gray-200 hover:border-purple-400 hover:shadow-md transition-all duration-200 overflow-hidden ">
@@ -91,7 +91,7 @@ <h3 class="text-xl font-bold text-gray-900 mb-2">{{ .name }}</h3>
9191 {{ end }}
9292 </ div >
9393 {{ else }}
94- < div class ="text-center py-12 mb-16 bg-gray-50 rounded-xl ">
94+ < div class ="text-center py-8 mb-10 bg-gray-50 rounded-xl ">
9595 < i class ="fas fa-calendar-times text-4xl text-gray-400 mb-4 block "> </ i >
9696 < p class ="text-xl text-gray-600 "> No upcoming events listed yet.</ p >
9797 < p class ="text-gray-500 mt-2 "> Know of one? Submit it below!</ p >
@@ -100,13 +100,13 @@ <h3 class="text-xl font-bold text-gray-900 mb-2">{{ .name }}</h3>
100100
101101 <!-- Past Events -->
102102 {{ if $past }}
103- < div class ="flex items-center mb-8 ">
103+ < div class ="flex items-center mb-6 ">
104104 < div class ="w-12 h-12 bg-gray-200 rounded-lg flex items-center justify-center mr-4 ">
105105 < i class ="fas fa-history text-2xl text-gray-500 "> </ i >
106106 </ div >
107107 < h2 class ="text-3xl font-bold text-gray-900 "> Past Events</ h2 >
108108 </ div >
109- < div class ="space-y-4 mb-16 ">
109+ < div class ="space-y-4 mb-10 ">
110110 {{ range (sort $past "start_date" "desc") }}
111111 < div class ="bg-gray-50 rounded-lg border border-gray-200 p-4 opacity-75 ">
112112 < div class ="flex items-center justify-between ">
@@ -135,10 +135,10 @@ <h3 class="font-semibold text-gray-700">{{ .name }}</h3>
135135</ section >
136136
137137<!-- Submit Event CTA -->
138- < section class ="py-16 bg-purple-600 ">
138+ < section class ="py-10 bg-purple-600 ">
139139 < div class ="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center text-white ">
140- < h2 class ="text-3xl font-bold mb-4 "> Have an Event to Share?</ h2 >
141- < p class ="text-xl mb-8 opacity-90 "> Submit your PowerShell-related conference, meetup, or community event by opening a GitHub issue.</ p >
140+ < h2 class ="text-3xl font-bold mb-2 "> Have an Event to Share?</ h2 >
141+ < p class ="text-xl mb-6 opacity-90 "> Submit your PowerShell-related conference, meetup, or community event by opening a GitHub issue.</ p >
142142 < a href ="https://github.com/PowerShellOrg/PowerShellOrgWebsite/issues/new?template=community-event.yml " target ="_blank " rel ="noopener "
143143 class ="inline-flex items-center bg-white text-purple-600 px-6 py-3 rounded-lg font-semibold hover:bg-gray-100 transition-colors duration-200 ">
144144 < i class ="fab fa-github mr-2 "> </ i > Submit an Event
0 commit comments