- Migrate LiveView, GearView, PurchasesView, SocialView, AnalyticsView into features - Create features: admin, developer, seller; add QueuePage, WishlistPage - Migrate pages/marketplace to features/marketplace - Remove components/views/ and pages/ legacy directories - Update lazyExports, docs (ARCHITECTURE) - Mark audit 2.1, 2.6 as done Refs: AUDIT_TECHNIQUE_INTEGRAL_2026_02_15.md items 2.1, 2.6
36 lines
909 B
TypeScript
36 lines
909 B
TypeScript
import type { LiveStream } from '@/types';
|
|
import type { LiveViewChatMessage } from './types';
|
|
|
|
export const FEATURED_STREAM: LiveStream = {
|
|
id: '1',
|
|
title: 'Late Night DnB Production 🎧 | Feedback Session',
|
|
streamer: 'Neuro_Glitch',
|
|
viewers: 1240,
|
|
thumbnailUrl: 'https://picsum.photos/id/140/800/450',
|
|
tags: ['Production', 'Ableton', 'DnB'],
|
|
isLive: true,
|
|
category: 'Production',
|
|
};
|
|
|
|
export const CHAT_MESSAGES: LiveViewChatMessage[] = [
|
|
{
|
|
user: 'BassHead99',
|
|
text: 'That Reese bass is filthy! 🤮🔥',
|
|
color: 'text-muted-foreground',
|
|
},
|
|
{
|
|
user: 'Studio_Rat',
|
|
text: 'What VST is that?',
|
|
color: 'text-muted-foreground',
|
|
},
|
|
{
|
|
user: 'Neuro_Glitch',
|
|
text: "It's Phase Plant, just initializing now.",
|
|
color: 'text-warning font-bold',
|
|
},
|
|
{
|
|
user: 'VocalChops',
|
|
text: 'Sent a $5 dono! Check my track?',
|
|
color: 'text-success',
|
|
},
|
|
];
|