@@ -39,7 +39,7 @@ const Sidebar = ({ isOpen, toggleSidebar }) => {
3939
4040 isActive
4141
42- ? 'text-primary-400 bg-gray-800 font-bold '
42+ ? 'text-primary-400 bg-gray-800'
4343
4444 : 'text-gray-300 hover:text-white hover:bg-gray-800'
4545
@@ -83,7 +83,7 @@ const Sidebar = ({ isOpen, toggleSidebar }) => {
8383
8484 transition = { { type : 'spring' , stiffness : 300 , damping : 30 } }
8585
86- className = { `fixed top-0 left-0 h-screen bg-black/30 backdrop-blur-sm text-white w-64 z-50 flex flex-col border-r border-gray-700/50` }
86+ className = { `fixed top-0 left-0 h-screen bg-black/30 backdrop-blur-sm text-white w-64 z-50 flex flex-col border-r border-gray-700/50 font-arvo ` }
8787
8888 >
8989
@@ -95,7 +95,7 @@ const Sidebar = ({ isOpen, toggleSidebar }) => {
9595
9696 < Fez />
9797
98- < span className = "text-2xl font-semibold tracking-tight" > fez< span className = "text-primary-400" > codex</ span > </ span >
98+ < span className = "text-2xl font-normal tracking-tight" > fez< span className = "text-primary-400" > codex</ span > </ span >
9999
100100 </ Link >
101101
@@ -118,11 +118,11 @@ const Sidebar = ({ isOpen, toggleSidebar }) => {
118118
119119 >
120120
121- < span className = "font-arvo" > Main</ span >
121+ < span className = "font-arvo " > Main</ span >
122122
123- < CaretDown size = { 20 } className = { `transition-transform ${ isMainOpen ? 'transform rotate-180' : '' } ` } />
123+ < CaretDown size = { 20 } className = { `transition-transform ${ isMainOpen ? 'transform rotate-180' : '' } ` } />
124124
125- </ button >
125+ </ button >
126126
127127 { isMainOpen && (
128128
@@ -164,11 +164,11 @@ const Sidebar = ({ isOpen, toggleSidebar }) => {
164164
165165 >
166166
167- < span className = "font-arvo" > Content</ span >
167+ < span className = "font-arvo " > Content</ span >
168168
169- < CaretDown size = { 20 } className = { `transition-transform ${ isContentOpen ? 'transform rotate-180' : '' } ` } />
169+ < CaretDown size = { 20 } className = { `transition-transform ${ isContentOpen ? 'transform rotate-180' : '' } ` } />
170170
171- </ button >
171+ </ button >
172172
173173 { isContentOpen && (
174174
@@ -213,17 +213,12 @@ const Sidebar = ({ isOpen, toggleSidebar }) => {
213213 className = { `flex items-center justify-between w-full text-sm font-normal uppercase tracking-wider mb-4 focus:outline-none ${ isGamesOpen ? 'text-gray-300' : 'text-gray-300' } ` }
214214
215215 >
216- < span className = "flex items-center gap-2 font-arvo" >
217-
218- < span > Games</ span >
219-
220- < ArrowSquareOutIcon size = { 16 } />
221-
222- </ span >
223-
224- < CaretDown size = { 20 } className = { `transition-transform ${ isGamesOpen ? 'transform rotate-180' : '' } ` } />
225-
226- </ button >
216+ < span className = "flex items-center gap-2 font-arvo " >
217+ < span > Games</ span >
218+ < ArrowSquareOutIcon size = { 16 } />
219+ </ span >
220+ < CaretDown size = { 20 } className = { `transition-transform ${ isGamesOpen ? 'transform rotate-180' : '' } ` } />
221+ </ button >
227222 { isGamesOpen && (
228223
229224 < nav className = "space-y-2 border-l-2 border-gray-700 ml-3 pl-3" >
@@ -260,7 +255,7 @@ const Sidebar = ({ isOpen, toggleSidebar }) => {
260255
261256 >
262257
263- < span className = "flex items-center gap-2 font-arvo" >
258+ < span className = "flex items-center gap-2 font-arvo " >
264259 < span > External Links</ span >
265260 < ArrowSquareOutIcon size = { 16 } />
266261 </ span >
@@ -292,18 +287,18 @@ const Sidebar = ({ isOpen, toggleSidebar }) => {
292287 < div className = "p-4 text-xs text-gray-500 text-left" >
293288 < button
294289 onClick = { toggleAllSections }
295- className = "flex items-center justify-center w-full text-sm font-medium uppercase tracking-wider mb-4 focus:outline-none bg-gray-700 text-white hover:bg-gray-600 rounded-md p-2"
290+ className = "flex items-center justify-center w-full text-sm font-normal uppercase tracking-wider mb-4 focus:outline-none bg-gray-700 text-white hover:bg-gray-600 rounded-md p-2"
296291 >
297292 < span > { allSectionsOpen ? 'Collapse All' : 'Expand All' } </ span >
298- < List size = { 20 } className = { `transition-transform ${ allSectionsOpen ? 'transform rotate-180' : '' } ` } />
293+ < List size = { 20 } className = { `ml-3 transition-transform ${ allSectionsOpen ? 'transform rotate-180' : '' } ` } />
299294 </ button >
300295 < hr className = "border-gray-700 my-4" />
301296
302- < div className = "flex space-x-2" >
297+ < div className = "flex space-x-2 font-arvo " >
303298
304- < button className = "bg-gray-800 hover:bg-gray-700 text-white font-bold py-2 px-4 rounded-md transition-colors w-full" > Button 1</ button >
299+ < button className = "bg-gray-800 hover:bg-gray-700 text-white py-2 px-4 rounded-md transition-colors w-full font-arvo " > Button 1</ button >
305300
306- < button className = "bg-gray-800 hover:bg-gray-700 text-white font-bold py-2 px-4 rounded-md transition-colors w-full" > Button 2</ button >
301+ < button className = "bg-gray-800 hover:bg-gray-700 text-white py-2 px-4 rounded-md transition-colors w-full font-arvo " > Button 2</ button >
307302
308303 </ div >
309304
0 commit comments