This commit is contained in:
2025-11-19 18:05:05 -03:00
parent cef81009f7
commit c16872091c
3 changed files with 13 additions and 3 deletions

View File

@@ -17,16 +17,16 @@ export const middleware: Route.MiddlewareFunction[] = [loggingMiddleware]
export function Layout({ children }: { children: React.ReactNode }) {
return (
<html lang="pt-br" className="h-full" suppressHydrationWarning>
<html lang="pt-br" suppressHydrationWarning>
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>saladeaula.digital</title>
<title>insights.saladeaula.digital</title>
<Meta />
<Links />
</head>
<body className="h-full">
<body>
<ThemeProvider
attribute="class"
defaultTheme="system"
@@ -62,6 +62,8 @@ export function ErrorBoundary({ error }: Route.ErrorBoundaryProps) {
stack = error.stack
}
console.error({ message, details, stack })
return (
<main className="pt-16 p-4 container mx-auto">
<h1>{message}</h1>