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,19 @@
import React, { ReactNode } from 'react';
import { Box } from './primitives/Box';
export interface FooterSectionProps {
children: ReactNode;
border?: boolean;
}
export const FooterSection = ({ children, border = true }: FooterSectionProps) => {
return (
<Box
marginTop={8}
paddingTop={8}
style={border ? { borderTop: '1px solid var(--ui-color-border-muted)', opacity: 0.8 } : {}}
>
{children}
</Box>
);
};