website refactor

This commit is contained in:
2026-01-20 15:12:28 +01:00
parent a972bb4195
commit 94aaaff704
25 changed files with 793 additions and 574 deletions

View File

@@ -1,5 +1,7 @@
'use client';
import React, { ReactNode } from 'react';
import { Grid } from '@/ui/Grid';
import { ReactNode } from 'react';
interface TeamGridProps {
children: ReactNode;
@@ -7,7 +9,10 @@ interface TeamGridProps {
export function TeamGrid({ children }: TeamGridProps) {
return (
<Grid cols={{ base: 1, md: 2, lg: 3 }} gap={4}>
<Grid
cols={3}
gap="lg"
>
{children}
</Grid>
);