website refactor

This commit is contained in:
2026-01-18 23:24:30 +01:00
parent aeaa43f4d3
commit 182056a57b
487 changed files with 1783 additions and 2170 deletions

View File

@@ -1,4 +1,4 @@
import { Box } from '@/ui/primitives/Box';
import { Grid } from '@/ui/Grid';
import { ReactNode } from 'react';
interface TeamGridProps {
@@ -7,8 +7,8 @@ interface TeamGridProps {
export function TeamGrid({ children }: TeamGridProps) {
return (
<Box display="grid" gridCols={{ base: 1, md: 2, lg: 3 }} gap={4}>
<Grid cols={{ base: 1, md: 2, lg: 3 }} gap={4}>
{children}
</Box>
</Grid>
);
}