71 lines
2.7 KiB
TypeScript
71 lines
2.7 KiB
TypeScript
|
||
import { Category, Book } from './types';
|
||
|
||
export const CATEGORIES: Category[] = [
|
||
{ id: 'fiction', name: 'Фантастика', count: 24, icon: 'rocket_launch', colorClass: 'bg-indigo-500/20 text-indigo-300' },
|
||
{ id: 'fantasy', name: 'Фэнтези', count: 18, icon: 'auto_fix_high', colorClass: 'bg-purple-500/20 text-purple-300' },
|
||
{ id: 'nonfiction', name: 'Научпоп', count: 7, icon: 'psychology', colorClass: 'bg-teal-500/20 text-teal-300' },
|
||
{ id: 'business', name: 'Бизнес', count: 3, icon: 'business_center', colorClass: 'bg-blue-500/20 text-blue-300' },
|
||
{ id: 'education', name: 'Учебная', count: 0, icon: 'school', colorClass: 'bg-orange-500/20 text-orange-300' },
|
||
{ id: 'classics', name: 'Классика', count: 15, icon: 'history_edu', colorClass: 'bg-amber-500/20 text-amber-300' },
|
||
];
|
||
|
||
export const INITIAL_BOOKS: Book[] = [
|
||
{
|
||
id: '1',
|
||
title: 'Великий Гэтсби',
|
||
author: 'Ф. Скотт Фицджеральд',
|
||
genre: 'Classic',
|
||
annotation: 'История о несбывшейся любви и трагедии американской мечты на фоне бурных двадцатых годов.',
|
||
coverUrl: 'https://picsum.photos/seed/gatsby/400/600',
|
||
pages: 208,
|
||
language: 'English',
|
||
publishedYear: 1925,
|
||
rating: 4.8,
|
||
status: 'reading',
|
||
progress: 45,
|
||
isFavorite: true
|
||
},
|
||
{
|
||
id: '2',
|
||
title: '1984',
|
||
author: 'Джордж Оруэлл',
|
||
genre: 'Dystopian',
|
||
annotation: 'Антиутопия о тоталитарном государстве, где мысли контролируются, а правда переменчива.',
|
||
coverUrl: 'https://picsum.photos/seed/1984/400/600',
|
||
pages: 328,
|
||
language: 'English',
|
||
publishedYear: 1949,
|
||
rating: 4.9,
|
||
status: 'want_to_read',
|
||
isFavorite: true
|
||
},
|
||
{
|
||
id: '3',
|
||
title: 'Дюна',
|
||
author: 'Фрэнк Герберт',
|
||
genre: 'Sci-Fi',
|
||
annotation: 'Эпическая сага о борьбе за власть над самой важной планетой во Вселенной.',
|
||
coverUrl: 'https://picsum.photos/seed/dune/400/600',
|
||
pages: 896,
|
||
language: 'English',
|
||
publishedYear: 1965,
|
||
rating: 4.7,
|
||
status: 'reading',
|
||
progress: 12
|
||
},
|
||
{
|
||
id: '4',
|
||
title: 'Хоббит',
|
||
author: 'Дж. Р. Р. Толкин',
|
||
genre: 'Fantasy',
|
||
annotation: 'Путешествие Бильбо Бэггинса туда и обратно в поисках сокровищ гномов.',
|
||
coverUrl: 'https://picsum.photos/seed/hobbit/400/600',
|
||
pages: 310,
|
||
language: 'English',
|
||
publishedYear: 1937,
|
||
rating: 4.9,
|
||
status: 'done'
|
||
}
|
||
];
|