feat(FIX-160): completed feature

This commit is contained in:
chattie
2026-08-22 17:35:43 +02:00
parent f8e7257dc0
commit e48577c61a
10 changed files with 54 additions and 6 deletions

View File

@@ -8,7 +8,9 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="es">
// suppressHydrationWarning: browser extensions (e.g. LastPass) inject
// attributes like data-lt-installed that differ between server and client.
<html lang="es" suppressHydrationWarning>
<body className="bg-gray-50 text-gray-900 antialiased">{children}</body>
</html>
);