From c024eff94cff2beb3cc39cf1cdf5f49ce04f17cd Mon Sep 17 00:00:00 2001 From: 230419 <230419@epvc.pt> Date: Tue, 5 May 2026 01:11:42 +0100 Subject: [PATCH] pequena alteracao nas seccoes --- src/App.jsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 8d25c0e..c90c6c3 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1095,7 +1095,7 @@ export default function App() { onClick={() => setActiveSectionFilter(sec.id)} className={`shrink-0 flex items-center gap-2 px-5 py-2.5 rounded-2xl font-black text-[10px] uppercase tracking-widest transition-all ${activeSectionFilter === sec.id ? 'bg-primary-600 text-white shadow-lg shadow-primary-600/30 scale-105' : (darkMode ? 'bg-gray-800 text-gray-400 hover:bg-gray-700' : 'bg-gray-100 text-gray-500 hover:bg-gray-200')}`} > - {sec.emoji} {sec.name} + {sec.name} ))} ))} @@ -1359,7 +1359,7 @@ export default function App() { const sec = sections.find(s => s.id === secId); return sec ? ( - {sec.emoji} {sec.name} + {sec.name} ) : null; })} @@ -1532,7 +1532,7 @@ export default function App() { }} className={`flex items-center gap-2 px-4 py-2 rounded-xl text-xs font-bold transition-all border-2 ${itemSections.includes(sec.id) ? 'border-primary-600 bg-primary-600 text-white shadow-lg shadow-primary-600/30' : 'border-transparent bg-gray-100 dark:bg-gray-800 text-gray-500 hover:bg-gray-200 dark:hover:bg-gray-700'}`} > - {sec.emoji} {sec.name} + {sec.name} {itemSections.includes(sec.id) && } ))}