add icon
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user