export type Track = {
    id: string;
    name: string;
    sessions: string[];
    event: string;
    main: number;
};
