website refactor

This commit is contained in:
2026-01-20 21:35:50 +01:00
parent 06207bf835
commit 51288234f4
42 changed files with 892 additions and 449 deletions

View File

@@ -0,0 +1,19 @@
'use client';
import React, { ReactNode } from 'react';
import { Grid } from '@/ui/Grid';
interface DriverGridProps {
children: ReactNode;
}
/**
* DriverGrid - A semantic layout for displaying driver cards.
*/
export function DriverGrid({ children }: DriverGridProps) {
return (
<Grid cols={{ base: 1, md: 2, lg: 3, xl: 4 }} gap={4}>
{children}
</Grid>
);
}