website refactor

This commit is contained in:
2026-01-16 15:20:25 +01:00
parent 7e02fc3ea5
commit 37b1aa626c
325 changed files with 2167 additions and 2782 deletions

View File

@@ -11,21 +11,21 @@
* - dismissed: Protest was dismissed (no action taken)
* - withdrawn: Protesting driver withdrew the protest
*/
import { RacingDomainValidationError, RacingDomainInvariantError } from '../errors/RacingDomainError';
import type { Entity } from '@core/shared/domain';
import { ProtestId } from './ProtestId';
import { RaceId } from './RaceId';
import { DriverId } from './DriverId';
import { StewardId } from './StewardId';
import { ProtestStatus } from './ProtestStatus';
import { ProtestIncident } from './ProtestIncident';
import { ProtestComment } from './ProtestComment';
import { VideoUrl } from './VideoUrl';
import { FiledAt } from './FiledAt';
import { ReviewedAt } from './ReviewedAt';
import { ProtestDefense } from './ProtestDefense';
import { DefenseRequestedAt } from './DefenseRequestedAt';
import type { Entity } from '@core/shared/domain/Entity';
import { RacingDomainInvariantError, RacingDomainValidationError } from '../errors/RacingDomainError';
import { DecisionNotes } from './DecisionNotes';
import { DefenseRequestedAt } from './DefenseRequestedAt';
import { DriverId } from './DriverId';
import { FiledAt } from './FiledAt';
import { ProtestComment } from './ProtestComment';
import { ProtestDefense } from './ProtestDefense';
import { ProtestId } from './ProtestId';
import { ProtestIncident } from './ProtestIncident';
import { ProtestStatus } from './ProtestStatus';
import { RaceId } from './RaceId';
import { ReviewedAt } from './ReviewedAt';
import { StewardId } from './StewardId';
import { VideoUrl } from './VideoUrl';
export interface ProtestProps {
id: ProtestId;