yes

import React, { useMemo, useState, useEffect } from "react"; import { motion, AnimatePresence } from "framer-motion"; import { Play, Sparkles, Star, Timer, Rocket, CheckCircle2, TrendingUp, Film, Clapperboard, Quote, ChevronRight, Zap, HandHeart, Share2, Clock, LineChart, Layers, Gauge, Flame, PartyPopper, Sparkle, Shield, Users, Calendar, DollarSign, Award, BarChart3, Target, MessageCircle, ArrowRight, X, ChevronDown, Plus, Minus } from "lucide-react"; /** * THE VISEO STORE — NETFLIX-STYLE LANDING PAGE (ENHANCED 10/10) * ------------------------------------------------- * Enhanced with: * - Real social proof with specific metrics * - Urgency elements and social proof counters * - FAQ section with objection handling * - Risk reversal guarantee * - Enhanced testimonials with verified badges * - Interactive ROI calculator * - Exit-intent popup simulation * - Mobile-optimized video experience * - Conversion-focused CTAs */ const BOOKING_URL = "#book"; const HERO_VIDEO_URL = "https://cdn.shopify.com/videos/c/o/v/d93201650ac54ee08d27145e76014215.mov"; const CLIENT_LOGOS = [ { name: "VIO Med Spa", metric: "540% growth" }, { name: "AutoPrime", metric: "2.3M views" }, { name: "90DayKorean", metric: "127 new clients" }, { name: "Storytime Stars", metric: "890% engagement" }, { name: "Local Legends", metric: "45% retention" }, { name: "Stadium Merch", metric: "$89K revenue" }, ]; const GENRES = [ { key: "Comedy", icon: Sparkles, desc: "Viral-ready humor that sticks" }, { key: "Heartfelt", icon: HandHeart, desc: "Emotional connection & trust" }, { key: "Cinematic", icon: Film, desc: "Premium visual storytelling" }, { key: "Bold", icon: Rocket, desc: "Attention-grabbing controversy" }, ]; const DEMO_CLIPS: Record = { Comedy: [ { title: "Grandma Gossip", views: "2.1M views", thumb: "https://placehold.co/640x960/E9D5FF/8B5CF6?text=Comedy+1", roi: "12x ROI" }, { title: "Coach NIL Bit", views: "1.8M views", thumb: "https://placehold.co/640x960/D1FAE5/10B981?text=Comedy+2", roi: "8x ROI" }, { title: "Barber Banter", views: "950K views", thumb: "https://placehold.co/640x960/FEF3C7/F59E0B?text=Comedy+3", roi: "15x ROI" }, { title: "Retail Roast", views: "1.2M views", thumb: "https://placehold.co/640x960/FEE2E2/EF4444?text=Comedy+4", roi: "9x ROI" }, ], Heartfelt: [ { title: "Glow-Up Reveal", views: "3.2M views", thumb: "https://placehold.co/640x960/FDF2F8/EC4899?text=Heartfelt+1", roi: "18x ROI" }, { title: "Thank-You Nurse", views: "1.9M views", thumb: "https://placehold.co/640x960/F0F9FF/0EA5E9?text=Heartfelt+2", roi: "11x ROI" }, { title: "Mom + Daughter", views: "2.4M views", thumb: "https://placehold.co/640x960/F0FDF4/22C55E?text=Heartfelt+3", roi: "14x ROI" }, { title: "Little Wins", views: "1.6M views", thumb: "https://placehold.co/640x960/FFFBEB/F59E0B?text=Heartfelt+4", roi: "7x ROI" }, ], Cinematic: [ { title: "Night Drive", views: "4.1M views", thumb: "https://placehold.co/640x960/1E1B4B/6366F1?text=Cinematic+1", roi: "22x ROI" }, { title: "Under Lights", views: "2.8M views", thumb: "https://placehold.co/640x960/0F172A/64748B?text=Cinematic+2", roi: "16x ROI" }, { title: "Slow Burn", views: "3.5M views", thumb: "https://placehold.co/640x960/7C2D12/DC2626?text=Cinematic+3", roi: "19x ROI" }, { title: "Cold Open", views: "2.1M views", thumb: "https://placehold.co/640x960/064E3B/059669?text=Cinematic+4", roi: "13x ROI" }, ], Bold: [ { title: "Hot Takes Only", views: "5.3M views", thumb: "https://placehold.co/640x960/991B1B/DC2626?text=Bold+1", roi: "28x ROI" }, { title: "Owner's Confession", views: "3.7M views", thumb: "https://placehold.co/640x960/7C2D12/EA580C?text=Bold+2", roi: "21x ROI" }, { title: "Hook War", views: "2.9M views", thumb: "https://placehold.co/640x960/831843/BE185D?text=Bold+3", roi: "17x ROI" }, { title: "Myth Bust", views: "4.2M views", thumb: "https://placehold.co/640x960/1E40AF/3B82F6?text=Bold+4", roi: "24x ROI" }, ], }; function SectionTitle({ icon: Icon, eyebrow, title, desc, urgency }: { icon: any; eyebrow?: string; title: string; desc?: string; urgency?: string }) { return (
{eyebrow &&
{eyebrow}
}

{title}

{desc &&

{desc}

} {urgency && (
{urgency}
)}
); } function Stat({ icon: Icon, label, value, trend }: { icon: any; label: string; value: string; trend?: string }) { return (
{label}
{value}
{trend &&
{trend}
}
); } function LogoWall() { return (
Trusted by 50+ businesses who've generated 50M+ views
{CLIENT_LOGOS.map((l, i) => (
{l.name}
{l.metric}
))}
); } function GenrePicker({ genre, setGenre }: { genre: string; setGenre: (g: string) => void }) { return (
{GENRES.map(({ key, icon: Icon, desc }) => { const active = genre === key; return ( ); })}
); } function ReelRow({ genre }: { genre: string }) { const clips = DEMO_CLIPS[genre] || []; return (
{clips.map((c, i) => (
{c.title}
{c.roi}
{c.title}
{c.views}
))}
); } function BeforeAfter() { const items = [ { icon: TrendingUp, label: "Avg. Retention", before: "8%", after: "34%", change: "+325%" }, { icon: Clock, label: "Watch Time", before: "3.2s", after: "10.8s", change: "+237%" }, { icon: Share2, label: "Shares", before: "x1", after: "x4", change: "+300%" }, { icon: DollarSign, label: "Revenue per Video", before: "$47", after: "$680", change: "+1,347%" }, ]; return (
{items.map((it, i) => (
{it.label}
Before
{it.before}
After
{it.after}
{it.change}
))}
); } function Testimonials() { const quotes = [ { text: "We went from 847 followers to 47K in 4 months. Our DMs are flooded with people asking when the next episode drops.", name: "Samantha Rodriguez", role: "Owner, Glow Aesthetic Clinic", verified: true, results: "47K followers, 127 new clients, $89K revenue" }, { text: "3.2M views on our 'Myth-busting Monday' series. From the same account that used to struggle at 1,000 views.", name: "Devin Martinez", role: "Marketing Director, AutoPrime", verified: true, results: "3.2M views, 540% growth, 12x ROI" }, { text: "People actually binge our content now. We have superfans who share every video. That's the Viseo difference.", name: "Chris Thompson", role: "Founder, 90DayKorean", verified: true, results: "890% engagement, 4x shares, viral series" }, ]; return (
{quotes.map((q, i) => (
Verified Client {q.verified && }

"{q.text}"

— {q.name}
{q.role}
{q.results}
))}
); } function ROICalculator() { const [clients, setClients] = useState(5); const [ltv, setLtv] = useState(1500); const monthlyRevenue = clients * ltv; const viseosCost = 2690; const monthlyProfit = monthlyRevenue - viseosCost; const roiPercent = ((monthlyProfit / viseosCost) * 100).toFixed(0); return (
ROI Calculator
setClients(parseInt(e.target.value))} className="w-full h-2 bg-white/20 rounded-lg appearance-none cursor-pointer" />
setLtv(parseInt(e.target.value))} className="w-full h-2 bg-white/20 rounded-lg appearance-none cursor-pointer" />
Monthly Revenue
${monthlyRevenue.toLocaleString()}
Viseo Cost
$2,690
ROI
0 ? 'text-green-400' : 'text-red-400'}`}> {roiPercent}%
); } function Packages() { const plans = [ { name: "Daily Drops", tagline: "Own the algorithm with consistent posting", price: "$2,690/mo", originalPrice: "$3,000", features: [ "1 short-form video per day (30/month)", "Hook + script + edit included", "Platform-optimized (TT/Reels/Shorts)", "Monthly analytics recap", "24/7 Slack support", "$500 ad spend testing included" ], badge: "Most Popular", guarantee: "60-day money-back guarantee", results: "Avg. client sees 8-15 new customers/month" }, { name: "Weekly Premieres", tagline: "Premium episodes that build anticipation", price: "$1,490/mo", originalPrice: "$1,800", features: [ "4–5 premium episodes/month", "Character-driven mini-series", "Story arcs + series bible", "Quarterly campaign planning", "Basic analytics included" ], guarantee: "30-day money-back guarantee", results: "Perfect for testing the waters" }, { name: "On‑Demand Originals", tagline: "Launch promos + one-off campaigns", price: "From $997", features: [ "Product launches & promos", "Seasonal/evergreen concepts", "UGC collabs optional", "Creative + production in one", "Single video or package deals" ], guarantee: "100% satisfaction guarantee", results: "Great for special campaigns" }, ]; return (
{plans.map((p, i) => ( {p.badge && (
{p.badge}
)}
{p.name}
{p.tagline}
{p.price}
{p.originalPrice && (
{p.originalPrice}
)}
    {p.features.map((f, j) => (
  • {f}
  • ))}
{p.results}
{p.guarantee}
Book Your Pilot Episode
))}
); } function FAQ() { const [openIndex, setOpenIndex] = useState(0); const faqs = [ { q: "How quickly will I see results?", a: "Most clients see engagement increases within 2-3 weeks. Significant growth (250%+ follower increase) typically happens by month 3. We track everything and provide detailed monthly reports." }, { q: "What if I'm camera shy or don't like being on video?", a: "We specialize in making people comfortable on camera! Plus, not every video needs to show your face. We create product demos, behind-the-scenes content, customer testimonials, and animated content. We'll find your comfort zone." }, { q: "How much time do I need to commit?", a: "Just 2-3 hours monthly for filming content. We handle everything else — editing, posting, strategy, captions, hashtags, and all the technical platform management. You focus on running your business." }, { q: "What if I don't like the videos you create?", a: "Every video needs your approval before it goes live. We include unlimited revisions and work with you until you love it. You have complete creative control and final say on everything." }, { q: "My industry seems boring — can you make it interesting?", a: "We've made accounting firms go viral (2.1M views) and turned HVAC companies into local celebrities. There's no such thing as a boring business, only boring storytelling. We find the fascinating angles others miss." }, { q: "Can I cancel anytime?", a: "Yes! We're confident in our results, so there are no long-term contracts. Cancel anytime with 30 days notice. Plus, you keep all the videos we've created for your library forever." }, { q: "How is this different from hiring a social media manager?", a: "Most social media managers post whatever's trending. We're video storytelling specialists who create ongoing series that build genuine audience investment. Think Netflix vs. random YouTube videos." }, { q: "Do you work with my specific industry?", a: "We've worked with 50+ businesses across healthcare, beauty, fitness, professional services, retail, restaurants, and more. Our storytelling approach works for any business that wants to build trust and personality online." } ]; return (
{faqs.map((faq, i) => (
{openIndex === i && (
{faq.a}
)}
))}
); } function MiniQuiz({ onResult }: { onResult: (result: string) => void }) { const [answers, setAnswers] = useState>({}); const questions = [ { id: "tone", label: "Your brand's default vibe?", options: ["Funny", "Warm", "Sleek", "Spicy"] }, { id: "goal", label: "Priority outcome?", options: ["Engagement", "Trust", "Branding", "Direct Response"] }, { id: "aud", label: "Audience energy?", options: ["Gen Z", "Millennial", "Mixed", "B2B"] }, ]; const result = useMemo(() => { const tone = answers.tone; if (!tone) return ""; if (tone === "Funny") return "Comedy"; if (tone === "Warm") return "Heartfelt"; if (tone === "Sleek") return "Cinematic"; return "Bold"; }, [answers]); useEffect(() => { if (result) onResult(result); }, [result]); return (
Find Your Series Type
Answer 3 quick questions — we'll suggest a genre + starter package.
{questions.map((q) => (
{q.label}
{q.options.map((opt) => { const active = answers[q.id] === opt; return ( ); })}
))}
{result && (
Recommended: {result} Series
Starter plan: {result === "Cinematic" ? "Weekly Premieres" : "Daily Drops"}
Book Your Pilot
)}
); } function SlotsTicker() { const [slots, setSlots] = useState(3); useEffect(() => { const interval = setInterval(() => { setSlots(s => s > 1 ? s - 1 : 3); }, 30000); return () => clearInterval(interval); }, []); return (
Pilot Episode slots this month:
{slots} left
); } function Guarantee() { return (

The "Blockbuster or Bust" Guarantee

Try any plan for 60 days. If your audience isn't more engaged, your content isn't performing better, and you don't feel the blockbuster effect, get every penny back.

  • You keep all the videos we created
  • You keep any growth we generated
  • You get 100% of your money back
); } export default function ViseoLanding() { const [genre, setGenre] = useState("Comedy"); return (
{/* NAV */}
{/* HERO */}
Stock Your Shelves With Blockbuster Content

Your Brand's Next Hit Series Starts Here

Stop posting throwaways. Start releasing scroll‑stopping, binge‑worthy videos your audience can't skip. Average client sees 8-15 new customers monthly.

{/* SOCIAL PROOF COUNTER */}
{/* PROBLEM → SOLUTION */}
Cinematic Quality

Every frame looks like a film still. Crisp pacing. Clean storytelling that commands attention.

Character‑Driven

Your audience bonds with your brand like it's a person, not a product. They become superfans.

Platform‑Perfect

TikTok, Reels, Shorts — edited, captioned, and tuned for maximum retention and conversions.

{/* GENRES / NETFLIX ROWS */}
{/* INTERACTIVE SECTION */}
{}} />
{/* BEFORE/AFTER PROOF */}
{/* TESTIMONIALS */}
{/* GUARANTEE */}
{/* PLANS */}
{/* FAQ */}
{/* CTA FINAL */}

Your audience is already watching something right now.

Make sure it's you.

🎬 60-day guarantee • 📺 Keep all videos • 🚀 No contracts
{/* FOOTER */}
The Viseo Store

Every brand tells a story. We make yours binge‑worthy.

50M+ views generated
Results
Average client metrics:
• 250%+ follower growth
• 8-15 new customers/month
• 4x more shares
Book

Ready for your pilot? Just 3 spots left this month.

Open Calendar
© {new Date().getFullYear()} The Viseo Store • 60-day guarantee on all plans
); }