website refactor
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user