website refactor

This commit is contained in:
2026-01-18 22:55:55 +01:00
parent b43a23a48c
commit aeaa43f4d3
179 changed files with 4736 additions and 6832 deletions

View File

@@ -0,0 +1,21 @@
import React, { ReactNode } from 'react';
import { Box } from './primitives/Box';
export interface SidebarProps {
children: ReactNode;
}
export const Sidebar = ({ children }: SidebarProps) => {
return (
<Box
as="aside"
display={{ base: 'none', lg: 'flex' }}
flexDirection="col"
width="16rem"
bg="var(--ui-color-bg-surface)"
style={{ borderRight: '1px solid var(--ui-color-border-default)', overflowY: 'auto' }}
>
{children}
</Box>
);
};