import React, { useState } from 'react'; import { ChevronLeft, ChevronRight } from 'lucide-react'; const InvestorSlideshow = () => { const [currentSlide, setCurrentSlide] = useState(0); const slides = [ { title: "VSS Kitchen Appliances", subtitle: "Potential Investors Overview", content: (
🍳

Smart Kitchen Ecosystem

UK Market
£2.35B
by 2030
Growth Rate
16.8%
annually
) }, { title: "Target Investor Types", content: (
🔌 IoT & Hardware VCs
Specialists in smart home technology
• Go Ahead Ventures • ATX Venture Partners • Wellington Partners
🇬🇧 UK Early-Stage VCs
London-based tech investors
• Seedcamp • Passion Capital • Hoxton Ventures
🛒 Consumer Tech Specialists
E-commerce & D2C focused
• Forward Partners • LocalGlobe
🍽️ Kitchen & Food Focused
Industry-specific expertise
• Kitchen Fund
) }, { title: "Government Funding (Non-Dilutive)", content: (
Innovate UK
Smart Grants £25k - £500k
Equity Required None ✓
Perfect for: Product development phase
British Business Bank
Startup Loans £500 - £25k
Lower interest rates • UK business support
) }, { title: "Investment Stage Roadmap", content: (
Pre-Seed
£50k - £250k
For: Prototype development, initial manufacturing
Investors: Angels, Seedcamp, government grants
✓ You have: Working prototype & market research
Seed Round
£250k - £1M
For: Market launch, production, app development
Investors: Passion Capital, Forward Partners, Hoxton
Need: Pre-orders, beta results, initial customers
Series A
£1M - £5M
For: Mass production, retail expansion, team growth
Investors: Highland Europe, Tencent, larger VCs
Need: Proven sales, retention data, revenue growth
) }, { title: "Why Investors Will Say YES", content: (
📈
Market Growth
£2.35B UK market growing at 16.8% annually
🔗
Ecosystem Lock-in
Integrated products create customer retention
💰
Recurring Revenue
Spice cartridge subscriptions + hardware sales
🌍
Scalability
Easy expansion to Europe & North America
IoT + Hardware
Proven business model with software integration
🎯
Competitive Edge
Integrated ecosystem vs single products
) }, { title: "Key Investors - Quick Reference", content: (
Investor
Focus
Stage / Amount
Seedcamp
Early-stage tech
£100k - £1M
Hoxton Ventures
Consumer tech
Seed - Series A
Forward Partners
D2C brands
Pre-seed - Series A
LocalGlobe
Early-stage tech
£500k - £2M
Kitchen Fund
Food & kitchen
Various stages
Go Ahead Ventures
IoT startups
Pre-seed / Seed
Passion Capital
Tech partnerships
Seed stage
Innovate UK
Government grants
£25k - £500k
) }, { title: "Next Steps", content: (
Your Action Plan
1
Perfect Your Pitch Deck
Problem, solution, market, product, business model, team
2
Build Traction
Gather pre-orders, beta testers, customer feedback
3
Start with Government Grants
Non-dilutive funding to build momentum
4
Target Seed Investors
Reach out to Seedcamp, Forward Partners, Kitchen Fund
💡 Pro Tip
Lead with your ecosystem advantage - it's what separates you from competitors like Instant Pot and Spicerr
) } ]; const nextSlide = () => { setCurrentSlide((prev) => (prev + 1) % slides.length); }; const prevSlide = () => { setCurrentSlide((prev) => (prev - 1 + slides.length) % slides.length); }; return (
{/* Slide Content */}

{slides[currentSlide].title}

{slides[currentSlide].subtitle && (

{slides[currentSlide].subtitle}

)}
{slides[currentSlide].content}
{/* Navigation */}
{slides.map((_, index) => (
{/* Slide Counter */}
Slide {currentSlide + 1} of {slides.length}
); }; export default InvestorSlideshow;