@@ -479,6 +479,7 @@ export default function Home() {
479479 < span className = "nav-item-text" > Join Us to Contribute</ span >
480480 </ a >
481481 </ li >
482+ < ModeToggle />
482483 < li >
483484 < a href = "#downloads" className = "nav-btn-sm" >
484485 < i className = "fas fa-user" aria-hidden = "true" > </ i >
@@ -487,14 +488,6 @@ export default function Home() {
487488 </ li >
488489 </ ul >
489490
490- < li >
491- < a href = "#downloads" className = "nav-btn-sm" >
492- < i className = "fas fa-user" aria-hidden = "true" > </ i >
493- < span > Login / Register</ span >
494- </ a >
495- </ li >
496- </ ul >
497-
498491 < button className = "mobile-menu-toggle" onClick = { ( ) => setMobileMenuOpen ( ( o ) => ! o ) } aria-label = "Toggle mobile menu" >
499492 < i className = { `fas fa-${ mobileMenuOpen ? "times" : "bars" } ` } > </ i >
500493 </ button >
@@ -506,7 +499,7 @@ export default function Home() {
506499 < a href = "#features" onClick = { ( ) => setMobileMenuOpen ( false ) } > Platform Highlights</ a >
507500 < a href = "#programs" onClick = { ( ) => setMobileMenuOpen ( false ) } > Community Programs</ a >
508501 < a href = "https://uhsocial.in/docs" target = "_blank" rel = "noreferrer" > Read Articles</ a >
509- < a href = "/contribute" onClick = { ( ) => setMobileMenuOpen ( false ) } > Join Us to Contribute</ a >
502+ < a href = { withBasePath ( "/contribute" ) } onClick = { ( ) => setMobileMenuOpen ( false ) } > Join Us to Contribute</ a >
510503 < a href = "#downloads" onClick = { ( ) => setMobileMenuOpen ( false ) } > Login / Register</ a >
511504
512505 { /* Clean border separation separator panel for mobile menu */ }
@@ -519,14 +512,14 @@ export default function Home() {
519512
520513 { /* ── Hero ── */ }
521514 < section className = "hero" >
522- < div className = "container hero-content scroll-reveal" style = { { paddingTop : '80px' } } >
515+ < div className = "container hero-content scroll-reveal hero-content-padded" >
523516 < h1 > Empowering Wellness Through Global Community</ h1 >
524517 < p > UltimateHealth is a platform that lets you publish health knowledge in your own language, review content, and share podcasts with the world.</ p >
525- </ PageWrapper >
526- </ Section >
518+ </ div >
519+ </ section >
527520
528521 { /* Downloads Section */ }
529- < Section id = "downloads" className = "download-section" >
522+ < section id = "downloads" className = "download-section" >
530523 < PageWrapper >
531524 < h2 > Get UltimateHealth</ h2 >
532525 < p className = "center" >
@@ -604,7 +597,7 @@ export default function Home() {
604597 </ div >
605598 </ div >
606599 </ div >
607- </ div >
600+ </ PageWrapper >
608601 </ section >
609602
610603< HeroAndDownload onJoinTestFlight = { ( ) => setAppleModal ( true ) } />
@@ -740,8 +733,8 @@ export default function Home() {
740733 { icon : "fa-fingerprint" , title : "Advanced Security" , desc : "Role-based access control (RBAC) ensuring only verified Reviewers and Admins can access protected operations." } ,
741734 ] . map ( ( f , i ) => (
742735 < div
743- className = "feature-card mod-card w-full fade-in border-2 border-transparent transition-all duration-300 ease-in-out hover:border-[#8952c4] hover:bg-muted/40 dark:hover:bg-muted/10 cursor-pointer "
744- key = { i }
736+ className = "feature-card mod-card w-full fade-in"
737+ key = { i }
745738 >
746739 < div className = "mod-icon" > < i className = { `fas ${ f . icon } ` } > </ i > </ div >
747740 < h3 > { f . title } </ h3 >
@@ -983,7 +976,7 @@ export default function Home() {
983976 < a href = "#programs" > Programs</ a >
984977 < a href = "#screenshots" > Screenshots</ a >
985978 < a href = "#contact" > Contact</ a >
986- < a href = "/contribute" > Join Us & Contribute </ a >
979+ < a href = { withBasePath ( "/contribute" ) } > Join Us & Contribute </ a >
987980 </ div >
988981
989982 { /* Support */ }
0 commit comments