Removed white theme

This commit is contained in:
Rene Arumetsa
2026-05-01 20:10:47 +03:00
parent b3f740ca46
commit e2c3ec5b8a
3 changed files with 4 additions and 78 deletions

View File

@@ -16,19 +16,11 @@ interface NavItem {
}
interface SidebarLayoutClientProps {
themeLabels: {
light: string;
dark: string;
system: string;
};
navItems: NavItem[];
}
export default function SidebarLayoutClient({
themeLabels,
navItems,
}: SidebarLayoutClientProps) {
return (
<Header themeLabels={themeLabels} navItems={navItems} />
);
return <Header navItems={navItems} />;
}