import image from '@/assets/images/meetOurBestCr.png'; type OurBestCr = { id: number; fullname: string; field: string; courses: number; rating?: string; image: string; }; export const ourBestCrs: OurBestCr[] = [ { id: 1, fullname: '@Rayen Dz', field: 'Participant', courses: 3, image: image, }, { id: 2, fullname: '@mantella_06', field: 'Participant', courses: 3, image: image, }, { id: 3, fullname: '@Dezidi Creativ', field: 'Participant', courses: 3, image: image, }, { id: 4, fullname: '@lead Rita', field: 'Participant', courses: 3, image: image, }, { id: 5, fullname: '@abbad_abelkader', field: 'Blogger', courses: 3, image: image, }, ];