@@ -13,7 +13,8 @@ import {
1313 Mail ,
1414 CheckCircle2 ,
1515 ArrowRight ,
16- Globe
16+ Globe ,
17+ BookOpen
1718} from 'lucide-react' ;
1819import logo from "../../icon.png"
1920
@@ -69,7 +70,7 @@ export function LoginForm() {
6970 } ;
7071
7172 const loginCard = sent ? (
72- < Card className = "w-full border-slate-200 shadow-lg" >
73+ < Card className = "w-full border-slate-200 shadow-lg py-4 " >
7374 < CardHeader className = "text-center pb-2" >
7475 < div className = "h-16 w-16 rounded-full bg-green-50 flex items-center justify-center mx-auto mb-4" >
7576 < Mail className = "h-8 w-8 text-green-600" />
@@ -101,7 +102,7 @@ export function LoginForm() {
101102 </ CardContent >
102103 </ Card >
103104 ) : (
104- < Card className = "w-full border-slate-200 shadow-lg" >
105+ < Card className = "w-full border-slate-200 shadow-lg py-4 " >
105106 < CardHeader className = "text-center pb-4" >
106107 { /* <div className="h-14 w-14 rounded-xl bg-gradient-to-br from-blue-500 to-indigo-600 flex items-center justify-center mx-auto mb-4 shadow-lg shadow-blue-500/25">
107108 <MessageSquare className="h-7 w-7 text-white" />
@@ -182,14 +183,31 @@ export function LoginForm() {
182183 { loginCard }
183184
184185 { /* Social Proof / Trust */ }
185- < div className = "mt-4 sm:mt-6 text-center" >
186+ < div className = "mt-2 mb-4 text-center" >
186187 < div className = "flex items-center justify-center gap-1 text-slate-400" >
187188 < CheckCircle2 className = "h-4 w-4 text-green-500" />
188189 < span className = "text-sm" > Free to get started</ span >
189190 </ div >
190191 </ div >
192+ { /* Example CTA */ }
193+ < a href = "https://commentkit.ankush.one/example" target = "_blank" rel = "noopener noreferrer" >
194+ < div className = "text-center bg-white p-4 py-2.5 rounded-xl border border-slate-100 shadow-sm flex items-center justify-between gap-4" >
195+ < div className = "text-left" >
196+ < h3 className = "text-slate-900 font-semibold" > See it in action</ h3 >
197+ < p className = "text-slate-500 text-sm" > Check out our live demo to see how comment threads work.</ p >
198+ </ div >
199+ < a
200+ href = "https://commentkit.ankush.one/example"
201+ target = "_blank"
202+ className = " inline-flex aspect-square h-full items-center gap-2 bg-blue-50 text-blue-600 hover:bg-blue-100 px-4 py-2 rounded-lg font-medium text-sm transition-colors"
203+ >
204+ < ArrowRight className = "h-5 w-5" />
205+ </ a >
206+ </ div >
207+ </ a >
191208 </ div >
192209
210+
193211 { /* Features - Left Side */ }
194212 < div className = "lg:col-span-3 lg:order-1 space-y-6 md:space-y-8" >
195213 { /* Feature Cards */ }
@@ -217,7 +235,7 @@ export function LoginForm() {
217235 </ div >
218236
219237 { /* How it Works */ }
220- < div className = "bg-white rounded-2xl border border-slate-100 p-4 sm:p-6 shadow-sm" >
238+ { /* <div className="bg-white rounded-2xl border border-slate-100 p-4 sm:p-6 shadow-sm">
221239 <h2 className="text-base sm:text-lg font-bold text-slate-800 mb-4 sm:mb-5 flex items-center gap-2">
222240 <Globe className="h-5 w-5 text-blue-600" />
223241 Get started in minutes
@@ -239,7 +257,7 @@ export function LoginForm() {
239257 description="Moderate comments, view activity, and keep your community healthy."
240258 />
241259 </div>
242- </ div >
260+ </div> */ }
243261
244262 { /* Code Preview */ }
245263 < div className = "bg-slate-900 rounded-xl p-3 sm:p-5 shadow-lg overflow-hidden" >
@@ -274,9 +292,19 @@ export function LoginForm() {
274292
275293 { /* Footer */ }
276294 < div className = "mt-12 md:mt-16 pt-6 md:pt-8 border-t border-slate-200 text-center" >
277- < p className = "text-xs sm:text-sm text-slate-400" >
295+ < p className = "text-xs sm:text-sm text-slate-400 mb-2 " >
278296 Built with Cloudflare Workers, D1, and Hono
279297 </ p >
298+ < div className = "flex items-center justify-center gap-4 text-sm font-medium" >
299+ < a href = "/docs" target = "_blank" className = "text-slate-500 hover:text-blue-600 flex items-center gap-1 transition-colors" >
300+ < BookOpen className = "h-4 w-4" />
301+ Documentation
302+ </ a >
303+ < a href = "https://commentkit.ankush.one/example" target = "_blank" className = "text-slate-500 hover:text-blue-600 flex items-center gap-1 transition-colors" >
304+ < Globe className = "h-4 w-4" />
305+ View Example
306+ </ a >
307+ </ div >
280308 </ div >
281309 </ div >
282310 ) ;
0 commit comments