refactor: separation of shared components

This commit is contained in:
2025-08-06 21:43:43 +04:00
parent 6efb75ab30
commit e43a8b0865
28 changed files with 49 additions and 48 deletions

View File

@ -0,0 +1,15 @@
import { Group } from "@mantine/core";
import { ColorSchemeToggle } from "@/components/ui/ColorSchemeToggle/ColorSchemeToggle";
const Header = () => {
return (
<Group
justify="flex-end"
h="7vh"
px="md">
<ColorSchemeToggle />
</Group>
);
};
export default Header;