diff --git a/.Jules/palette.md b/.Jules/palette.md
new file mode 100644
index 0000000..6cb7852
--- /dev/null
+++ b/.Jules/palette.md
@@ -0,0 +1,3 @@
+## 2025-02-03 - Spanish Linguistic Polish and Button Accessibility
+**Learning:** In Spanish-language interfaces, missing accents (tildes) on common UI terms like "Mañana", "Título", "Descripción", and "Búsqueda" significantly degrade the perceived quality and professionalism of the application. Additionally, icon-only buttons in complex dashboards frequently lack ARIA labels, hindering accessibility for screen reader users.
+**Action:** Always perform a sweep for common Spanish UI terms that require accentuation and ensure all icon-only buttons have descriptive `aria-label` and `title` attributes.
diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx
index 242af68..3b9b6d0 100644
--- a/frontend/app/layout.tsx
+++ b/frontend/app/layout.tsx
@@ -5,6 +5,7 @@ import "./globals.css";
import { Toaster } from "@/components/ui/toaster";
import { ThemeProvider } from "@/components/theme-provider";
import { PWAProvider } from "@/components/pwa";
+import { TooltipProvider } from "@/components/ui/tooltip";
const inter = Inter({ subsets: ["latin"] });
@@ -79,9 +80,11 @@ export default function RootLayout({
enableSystem
disableTransitionOnChange
>
- {children}
-
-
+
+ {children}
+
+
+