import { Creative } from "@/lib/types/api"; import { mockTargetChannels } from "./channels"; // ============================================================================ // Mock Creatives Data // ============================================================================ export const mockCreatives: Creative[] = [ { id: "cr1", name: 'Креатив "Присоединяйся"', text: "🔥 Присоединяйся к нашему сообществу!\n\nУзнавай первым о новых возможностях и фишках.\n\n👉 {link}", target_channel_id: "tc1", target_channel_title: mockTargetChannels[0].title, created_at: "2024-01-15T10:00:00.000Z", status: "active", placements_count: 10, }, { id: "cr2", name: 'Креатив "Эксклюзив"', text: "⭐ Эксклюзивный контент только для подписчиков!\n\nНе упусти возможность быть в курсе всех трендов.\n\nПереходи: {link}", target_channel_id: "tc1", target_channel_title: mockTargetChannels[0].title, created_at: "2024-01-20T12:00:00.000Z", status: "active", placements_count: 5, }, { id: "cr3", name: 'Креатив "Обучение"', text: "📚 Хочешь научиться зарабатывать больше?\n\nПодписывайся на канал с проверенными методиками!\n\n{link}", target_channel_id: "tc2", target_channel_title: mockTargetChannels[1].title, created_at: "2024-02-05T09:00:00.000Z", status: "active", placements_count: 8, }, { id: "cr4", name: "Старый креатив (архив)", text: "Устаревший текст с предложением. {link}", target_channel_id: "tc1", target_channel_title: mockTargetChannels[0].title, created_at: "2023-12-01T10:00:00.000Z", status: "archived", placements_count: 2, }, ];