Merge branch 'sidebar/account-sidebar' into 'main'

new sidebar for account/settings

See merge request vkuchenik/website-framework!62
This commit is contained in:
2025-08-12 21:22:40 +00:00
5 changed files with 44 additions and 13 deletions
@@ -0,0 +1,9 @@
import { Box } from "@chakra-ui/react";
export default function Personal() {
return (
<Box color="white" bg="tomato">
Hello World
</Box>
);
}
@@ -0,0 +1,9 @@
import { Box } from "@chakra-ui/react";
export default function Security() {
return (
<Box color="white" bg="tomato">
Heya
</Box>
);
}