refactor: update UI components and page layouts
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Adriano Belisario
2026-05-03 18:18:31 +00:00
parent ee884ccdf2
commit 52f75f0b3d
8 changed files with 56 additions and 94 deletions

View File

@@ -1,7 +1,6 @@
// Root-level not-found page
export default function RootNotFound() {
return (
<html lang="en">
<html lang="pt-BR">
<body>
<div style={{
minHeight: '100vh',
@@ -22,10 +21,10 @@ export default function RootNotFound() {
}}>
<div style={{ fontSize: '3.75rem', fontWeight: 'bold', color: '#1f2937' }}>404</div>
<h1 style={{ fontSize: '1.5rem', fontWeight: '600', color: '#111827', marginTop: '1rem' }}>
Page Not Found
Página não encontrada
</h1>
<p style={{ color: '#4b5563', marginTop: '1rem' }}>
The page you are looking for doesn't exist.
A página que você procura não existe.
</p>
<a
href="/"
@@ -40,7 +39,7 @@ export default function RootNotFound() {
textDecoration: 'none'
}}
>
Go Home
Voltar ao início
</a>
</div>
</div>