import { Product, StaffMember, Order, DealerApplication, WebsiteSettings } from './types'; export const INITIAL_PRODUCTS: Product[] = [ { id: 'prod-1', productId: 'SG-BULB-9W', serialNoPrefix: 'SGL-9W-89301', name: 'SuryaGlow 9W Inverter Rechargeable LED Bulb', type: 'Ready Product', category: 'LED Bulbs', wattage: '9W', lumens: '900 lm', warranty: '2 Years', retailPrice: 240, wholesalePrice: 155, minOrderQuantityWholesale: 50, minOrderQuantityRetail: 1, stock: 1250, lowStockThreshold: 100, image: 'https://images.unsplash.com/photo-1550985543-f47f38aeee65?auto=format&fit=crop&w=800&q=80', galleryImages: [ 'https://images.unsplash.com/photo-1550985543-f47f38aeee65?auto=format&fit=crop&w=800&q=80', 'https://images.unsplash.com/photo-1565849904461-04a58ad377e0?auto=format&fit=crop&w=800&q=80' ], description: 'Smart AC/DC emergency inverter LED bulb with built-in 2200mAh lithium battery.', uniqueWarrantyCode: 'SG9W-WRY-9301', specifications: { voltage: '90V - 300V AC', beamAngle: '240°', lifespan: '25,000 Hours', cri: '>85', surgeProtection: '4KV Surge Protected' }, features: ['Overcharge protection', 'Instant switch on', 'B22 standard bayonet cap'], rawMaterialsBOM: [ { componentName: '9W LED Housing (Plastic Body)', quantityRequired: 1 }, { componentName: '9W LED Driver Circuit', quantityRequired: 1 }, { componentName: '9W MCPCB with SMD Diodes', quantityRequired: 1 }, { componentName: 'B22 Nickel Plated Cap', quantityRequired: 1 }, { componentName: 'Acrylic Diffuser Cover', quantityRequired: 1 }, { componentName: '2200mAh Li-ion Battery Cell', quantityRequired: 1 } ], dailyProduction: [] }, { id: 'prod-2', productId: 'SG-BULB-12W', serialNoPrefix: 'SGL-12W-48201', name: 'SuryaGlow 12W Ultra-Bright Professional LED Bulb', type: 'Ready Product', category: 'LED Bulbs', wattage: '12W', lumens: '1350 lm', warranty: '2 Years', retailPrice: 160, wholesalePrice: 105, minOrderQuantityWholesale: 100, minOrderQuantityRetail: 1, stock: 3400, lowStockThreshold: 200, image: 'https://images.unsplash.com/photo-1565849904461-04a58ad377e0?auto=format&fit=crop&w=800&q=80', galleryImages: [], description: 'High lumen efficiency LED bulb designed for commercial and large residential spaces.', uniqueWarrantyCode: 'SG12W-WRY-4820', specifications: { voltage: '100V - 300V AC', beamAngle: '270°', lifespan: '30,000 Hours', cri: '>85', surgeProtection: '3.5KV Surge Protected' }, features: ['Flicker-free eye protection driver', 'Cool White 6500K'], rawMaterialsBOM: [ { componentName: '12W LED Housing', quantityRequired: 1 }, { componentName: '12W HPF Driver', quantityRequired: 1 }, { componentName: '12W MCPCB', quantityRequired: 1 }, { componentName: 'B22 Cap', quantityRequired: 1 } ], dailyProduction: [] } ]; export const INITIAL_STAFF: StaffMember[] = [ { empId: 'MDadmin', name: 'SuryaGlow MD (Super Admin)', fatherName: 'N/A', post: 'Super Admin', phone: '+91 00000 00000', email: 'admin@suryaglow.com', isActive: true, permissions: { manageProducts: true, manageOrders: true, manageDealers: true, manageStaff: true, adjustPricingFormula: true, manageSettings: true } } ]; export const INITIAL_ORDERS: Order[] = []; export const INITIAL_DEALER_APPS: DealerApplication[] = []; export const INITIAL_SETTINGS: WebsiteSettings = { brandName: 'SuryaGlow', brandTagline: 'LED LIGHTS & SKD RAW MATERIALS', headerBadgeText: 'BIS Approved & ISO 9001:2015 Factory', helplinePhone: '+91 98765 43210', helplineEmail: 'sales@suryaglow.com', factoryAddress: 'SuryaGlow Industrial Estate, Haridwar, Uttarakhand, India.', heroTitle1: 'Next-Gen', heroTitleHighlight: 'LED Lighting', heroTitleSuffix: '& High-Grade SKD Kits', heroSubtitle: "SuryaGlow is India's leading manufacturer of commercial & residential LED appliances and premium SKD/CKD raw material components.", bisApprovedText: 'BIS Approved & ISO 9001:2015 Factory', surgeSafetyText: '100% Quality Tested Raw Materials', footerAboutText: 'SuryaGlow Electricals & LED Manufacturing Ltd. is an ISO 9001:2015 & BIS approved industrial unit.', badge1Title: '2-3 Yr Warranty', badge1Subtitle: 'On Ready Products', badge2Title: 'SKD & CKD Kits', badge2Subtitle: 'Wholesale Volume', badge3Title: 'Pan-India Dispatch', badge3Subtitle: 'Fast tracking ID', logoImage: '', factoryUpiId: 'suryaglow@ybl', defaultWholesaleDiscount: 30, defaultRetailDiscount: 10, dashboardTheme: 'Modern', customRoles: ['Sales Executive', 'Account Specialist', 'Inventory Manager', 'HR Manager'], isShiprocketActive: false };