@@ -122,33 +122,33 @@ const Navbar: React.FC = () => {
122122 document . getElementById ( 'how-it-works' ) ?. scrollIntoView ( { behavior : 'smooth' } ) ;
123123 setMobileMenuOpen ( false ) ;
124124 } }
125- className = "text-2xl font-extrabold text-gray-800 dark:text-gray-100 hover:text-blue-500 transition-colors"
125+ className = "text-xl font-extrabold text-gray-800 dark:text-gray-100 hover:text-blue-500 transition-colors"
126126 >
127127 How it works
128128 </ button >
129129
130130 < Link
131131 href = "/previous-matches"
132132 onClick = { ( ) => setMobileMenuOpen ( false ) }
133- className = "text-2xl font-extrabold text-gray-800 dark:text-gray-100 hover:text-blue-500 transition-colors"
133+ className = "text-xl font-extrabold text-gray-800 dark:text-gray-100 hover:text-blue-500 transition-colors"
134134 >
135135 Previous Matches
136136 </ Link >
137137
138- < div className = "w-full h-[1px] bg-gray-200 dark:bg-white/10 my-4 " > </ div >
138+ < div className = "w-full h-[1px] bg-gray-200 dark:bg-white/10 my-2 " > </ div >
139139
140140 { user ? (
141141 < >
142142 < Link
143143 href = "/dashboard"
144144 onClick = { ( ) => setMobileMenuOpen ( false ) }
145- className = "text-2xl font-extrabold text-blue-500 transition-colors"
145+ className = "text-xl font-extrabold text-blue-500 transition-colors"
146146 >
147147 Dashboard
148148 </ Link >
149149 < button
150150 onClick = { handleSignOut }
151- className = "text-2xl font-extrabold text-red-500 hover:text-red-400 transition-colors flex items-center gap-2"
151+ className = "text-xl font-extrabold text-red-500 hover:text-red-400 transition-colors flex items-center gap-2"
152152 >
153153 < FaSignOutAlt />
154154 Logout
@@ -159,7 +159,7 @@ const Navbar: React.FC = () => {
159159 < Link
160160 href = "/auth/login"
161161 onClick = { ( ) => setMobileMenuOpen ( false ) }
162- className = "text-2xl font-extrabold text-gray-800 dark:text-gray-100 hover:text-blue-500 transition-colors"
162+ className = "text-xl font-extrabold text-gray-800 dark:text-gray-100 hover:text-blue-500 transition-colors"
163163 >
164164 Login
165165 </ Link >
@@ -168,7 +168,7 @@ const Navbar: React.FC = () => {
168168 router . push ( '/auth/signup' ) ;
169169 setMobileMenuOpen ( false ) ;
170170 } }
171- className = "bg-blue-600 text-white px-12 py-4 rounded-2xl text-2xl font-black hover:bg-blue-500 shadow-2xl shadow-blue-600/30 transition-transform active:scale-95 w-full"
171+ className = "bg-blue-600 text-white px-10 py-3 rounded-2xl text-xl font-black hover:bg-blue-500 shadow-2xl shadow-blue-600/30 transition-transform active:scale-95 w-full"
172172 >
173173 Join Now
174174 </ button >
0 commit comments