init project

This commit is contained in:
root
2026-06-25 19:06:59 -04:00
parent c5dfee6efb
commit 5d017f533a
349 changed files with 31330 additions and 0 deletions
@@ -0,0 +1,16 @@
import { Button } from '@/components/actions/Button';
import type { MetricContent } from '@/components/marketing/Evidence';
void Button;
const approvedMetric: MetricContent = {
value: '1',
label: 'Fixture',
status: 'approved',
sourceReference: 'SRC-001',
};
void approvedMetric;
// @ts-expect-error icon-only buttons require an accessible label.
const invalidIconButton = <Button icon="close" />;
void invalidIconButton;