File size: 464 Bytes
1fb9e94 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import { Source } from './types';
export const INITIAL_SOURCES: Source[] = [
{
id: '1',
title: 'مواهب القدوس',
author: 'الشيخ أحمدو بمبا',
category: 'tawhid'
},
{
id: '2',
title: 'مسالك الجنان',
author: 'الشيخ أحمدو بمبا',
category: 'tasawwuf'
},
{
id: '3',
title: 'جذب القلوب',
author: 'الشيخ أحمدو بمبا',
category: 'khidma'
}
]; |