@@ -125,35 +125,36 @@ export default function Home() {
125125 </ div >
126126
127127 { /* Why Choose Us */ }
128- < section className = "py-20 bg-white" >
128+ < section className = "py-20 bg-white dark:bg-slate-950 transition-colors duration-300 " >
129129 < div className = "max-w-5xl mx-auto px-4 text-center" >
130- < h2 className = "text-4xl font-extrabold text-gray-900 mb-4" > Why Developers Love Us</ h2 >
131- < p className = "text-lg text-gray-500 mb-16 max-w-xl mx-auto" > Designed for speed, built for professionals</ p >
130+ < h2 className = "text-4xl font-extrabold text-gray-900 dark:text-white mb-4" > Why Developers Love Us</ h2 >
131+ < p className = "text-lg text-gray-500 dark:text-slate-400 mb-16 max-w-xl mx-auto" > Designed for speed, built for professionals</ p >
132132
133133 < div className = "grid grid-cols-1 md:grid-cols-3 gap-10" >
134134 { [
135135 { title : 'Lightning Fast' , desc : 'All tools run client-side. Zero server delays. Instant results.' , emoji : '⚡' } ,
136136 { title : '100% Free' , desc : 'No hidden paywalls, no sign-ups, no usage limits. Ever.' , emoji : '🎁' } ,
137137 { title : 'Privacy First' , desc : 'Your data never leaves your browser. Nothing is stored or sent.' , emoji : '🔒' } ,
138138 ] . map ( ( item ) => (
139- < div key = { item . title } className = "flex flex-col items-center" >
140- < div className = "text-5xl mb-6" > { item . emoji } </ div >
141- < h3 className = "text-xl font-bold text-gray-900 mb-2" > { item . title } </ h3 >
142- < p className = "text-gray-500 leading-relaxed" > { item . desc } </ p >
139+ < div key = { item . title } className = "flex flex-col items-center group " >
140+ < div className = "text-6xl mb-6 group-hover:scale-110 transition-transform duration-300 drop-shadow-sm " > { item . emoji } </ div >
141+ < h3 className = "text-xl font-bold text-gray-900 dark:text-white mb-2" > { item . title } </ h3 >
142+ < p className = "text-gray-500 dark:text-slate-400 leading-relaxed" > { item . desc } </ p >
143143 </ div >
144144 ) ) }
145145 </ div >
146146 </ div >
147147 </ section >
148148
149149 { /* CTA */ }
150- < section className = "py-20 bg-gradient-to-r from-blue-600 to-indigo-600 text-white" >
151- < div className = "max-w-4xl mx-auto px-4 text-center" >
152- < h2 className = "text-4xl font-extrabold mb-4" > Ready to Boost Your Workflow?</ h2 >
153- < p className = "text-xl text-blue-100 mb-10 max-w-2xl mx-auto" >
154- Join thousands of developers who use WebToolkit Pro every day.
150+ < section className = "py-24 bg-gradient-to-r from-blue-600 via-indigo-600 to-purple-600 dark:from-blue-900 dark:via-indigo-900 dark:to-purple-900 text-white relative overflow-hidden" >
151+ < div className = "absolute top-0 left-0 w-full h-full bg-blue-600/10 dark:bg-black/20 mix-blend-overlay" > </ div >
152+ < div className = "relative z-10 max-w-4xl mx-auto px-4 text-center" >
153+ < h2 className = "text-4xl md:text-5xl font-extrabold mb-6 tracking-tight" > Ready to Boost Your Workflow?</ h2 >
154+ < p className = "text-xl text-blue-50 dark:text-slate-300 mb-10 max-w-2xl mx-auto leading-relaxed" >
155+ Join thousands of developers who use WebToolkit Pro every day to build better, faster, and more securely.
155156 </ p >
156- < Link href = "/tools" className = "inline-flex items-center gap-2 bg-white text-blue-700 px-10 py-4 rounded-xl font-bold text-lg hover:shadow-2xl hover:-translate-y-1 transition-all duration-300" >
157+ < Link href = "/tools" className = "inline-flex items-center gap-2 bg-white text-blue-700 px-10 py-4 rounded-2xl font-bold text-lg hover:shadow-2xl hover:shadow-blue-900/40 hover:-translate-y-1 transition-all duration-300" >
157158 Get Started — It's Free < ArrowRight className = "w-5 h-5" />
158159 </ Link >
159160 </ div >
0 commit comments