website refactor

This commit is contained in:
2026-01-18 16:18:18 +01:00
parent 0b301feb61
commit 13567d51af
329 changed files with 4701 additions and 4750 deletions

View File

@@ -2,9 +2,9 @@
import React from 'react';
import { RefreshCw, Home } from 'lucide-react';
import { Box } from '@/ui/Box';
import { Button } from '@/ui/Button';
import { Icon } from '@/ui/Icon';
import { Stack } from '@/ui/Stack';
interface ErrorRecoveryActionsProps {
onRetry: () => void;
@@ -19,11 +19,11 @@ interface ErrorRecoveryActionsProps {
*/
export function ErrorRecoveryActions({ onRetry, onHome }: ErrorRecoveryActionsProps) {
return (
<Box
display="flex"
flexWrap="wrap"
alignItems="center"
justifyContent="center"
<Stack
direction="row"
wrap
align="center"
justify="center"
gap={3}
fullWidth
>
@@ -43,6 +43,6 @@ export function ErrorRecoveryActions({ onRetry, onHome }: ErrorRecoveryActionsPr
>
Return to Pits
</Button>
</Box>
</Stack>
);
}