export interface TrustBadgeData {
    number: string | number;
    label: string;
    imageUrl: string;
    type: 'commercial' | 'freelance';
}
