website refactor

This commit is contained in:
2026-01-18 22:55:55 +01:00
parent b43a23a48c
commit aeaa43f4d3
179 changed files with 4736 additions and 6832 deletions

View File

@@ -1,6 +1,7 @@
import { Trophy, Sparkles, LucideIcon } from 'lucide-react';
import { Card } from '@/ui/Card';
import { EmptyState as UiEmptyState } from '@/components/shared/state/EmptyState';
import { EmptyState as UiEmptyState } from '@/ui/EmptyState';
import React from 'react';
interface EmptyStateProps {
title: string;
@@ -32,8 +33,10 @@ export function EmptyState({
onClick: onAction,
icon: actionIcon,
} : undefined}
/>
{children}
variant="minimal"
>
{children}
</UiEmptyState>
</Card>
);
}