Translate to pt, fix some ui details, add proper icon and logo

This commit is contained in:
litoral05
2026-05-11 17:17:50 +01:00
parent c1e9aeb386
commit 12358327c9
73 changed files with 529 additions and 598 deletions
+7 -1
View File
@@ -5,16 +5,22 @@ import { Sidebar } from './Sidebar';
type AppShellProps = PropsWithChildren<{
active: string;
onSelect: (value: string) => void;
onLogout: () => void;
}>;
export function AppShell({
active,
onSelect,
onLogout,
children,
}: AppShellProps) {
return (
<div className="flex h-screen overflow-hidden bg-ink-950 text-white">
<Sidebar active={active} onSelect={onSelect} />
<Sidebar
active={active}
onSelect={onSelect}
onLogout={onLogout}
/>
<main className="flex-1 overflow-hidden p-4">
{children}