@@ -90,21 +90,24 @@ export default function Home() {
9090 } ;
9191
9292 return (
93- < div className = "container mx-auto px-4 space-y-12 py-8 " >
94- < section className = "text-center space-y-4 " >
95- < h1 className = "text-4xl font-bold sm:text-5xl md:text-6xl " >
93+ < div className = "container mx-auto px-4 space-y-16 py-12 min-h-screen " >
94+ < section className = "text-center space-y-6 " >
95+ < h1 className = "text-5xl font-bold sm:text-6xl md:text-7xl bg-gradient-to-r from-purple-600 to-blue-600 text-transparent bg-clip-text " >
9696 The Open Web Conference
9797 </ h1 >
98- < p className = "text-xl sm:text-2xl text-muted-foreground max-w-2xl mx-auto" >
98+ < p className = "text-xl sm:text-2xl text-muted-foreground max-w-2xl mx-auto leading-relaxed " >
9999 Join us in celebrating open-source innovation and community
100100 collaboration at the premier event for open web advocates.
101101 </ p >
102- < Button asChild >
102+ < Button size = "lg" asChild >
103103 < Link href = "#subscribe" > Stay Updated</ Link >
104104 </ Button >
105105 </ section >
106106
107- < section id = "about" className = "space-y-4 max-w-3xl mx-auto" >
107+ < section
108+ id = "about"
109+ className = "space-y-6 max-w-3xl mx-auto backdrop-blur-sm bg-card/50 p-8 rounded-lg border"
110+ >
108111 < h2 className = "text-3xl font-bold" > What is the Open Web Conference?</ h2 >
109112 < p >
110113 The Open Web Conference is the flagship event dedicated to fostering a
@@ -132,7 +135,10 @@ export default function Home() {
132135 </ ul >
133136 </ section >
134137
135- < section id = "mission" className = "space-y-4 max-w-3xl mx-auto" >
138+ < section
139+ id = "mission"
140+ className = "space-y-6 max-w-3xl mx-auto backdrop-blur-sm bg-card/50 p-8 rounded-lg border"
141+ >
136142 < h2 className = "text-3xl font-bold" > Our Mission</ h2 >
137143 < p >
138144 < span className = "font-bold" > At Open Web Conference</ span > , our mission
@@ -155,8 +161,11 @@ export default function Home() {
155161 </ p >
156162 </ section >
157163
158- < section id = "subscribe" className = "space-y-4 max-w-md mx-auto" >
159- < h2 className = "text-3xl font-bold text-center" >
164+ < section
165+ id = "subscribe"
166+ className = "space-y-6 max-w-3xl mx-auto backdrop-blur-sm bg-card/50 p-8 rounded-lg border"
167+ >
168+ < h2 className = "text-3xl font-bold text-center bg-gradient-to-r from-purple-600 to-blue-600 text-transparent bg-clip-text" >
160169 Be Part of the Movement
161170 </ h2 >
162171 < p className = "text-center text-muted-foreground" >
@@ -186,10 +195,14 @@ export default function Home() {
186195 </ form >
187196 </ section >
188197
189- < section className = "text-center space-y-4 " >
198+ < section className = "text-center space-y-6 " >
190199 < h2 className = "text-3xl font-bold" > Connect With Us</ h2 >
191- < div className = "flex flex-col sm:flex-row justify-center gap-3 sm:space-x-4" >
192- < Button variant = "outline" asChild className = "w-full sm:w-auto" >
200+ < div className = "flex flex-col sm:flex-row justify-center gap-4 sm:space-x-4" >
201+ < Button
202+ variant = "outline"
203+ asChild
204+ className = "w-full sm:w-auto hover:bg-card/50 transition-all duration-300"
205+ >
193206 < Link
194207 href = "https://x.com/OpenWebEvents"
195208 target = "_blank"
@@ -199,7 +212,11 @@ export default function Home() {
199212 Twitter
200213 </ Link >
201214 </ Button >
202- < Button variant = "outline" asChild className = "w-full sm:w-auto" >
215+ < Button
216+ variant = "outline"
217+ asChild
218+ className = "w-full sm:w-auto hover:bg-card/50 transition-all duration-300"
219+ >
203220 < Link
204221 href = "https://www.linkedin.com/company/openwebevents"
205222 target = "_blank"
@@ -209,7 +226,11 @@ export default function Home() {
209226 LinkedIn
210227 </ Link >
211228 </ Button >
212- < Button variant = "outline" asChild className = "w-full sm:w-auto" >
229+ < Button
230+ variant = "outline"
231+ asChild
232+ className = "w-full sm:w-auto hover:bg-card/50 transition-all duration-300"
233+ >
213234 < Link
214235 href = "https://github.com/OpenWebEvents"
215236 target = "_blank"
@@ -221,16 +242,6 @@ export default function Home() {
221242 </ Button >
222243 </ div >
223244 </ section >
224-
225- < section className = "text-center space-y-2 text-sm text-muted-foreground" >
226- < Link href = "/privacy-policy" className = "hover:underline" >
227- Privacy Policy
228- </ Link >
229- < span > | </ span >
230- < Link href = "/code-of-conduct" className = "hover:underline" >
231- Code of Conduct
232- </ Link >
233- </ section >
234245 </ div >
235246 ) ;
236247}
0 commit comments