import React, { useState, useEffect } from 'react'; import { Zap, Cpu, Users, Target, TrendingUp, Layers, Camera, Mic, ArrowRight, CheckCircle2, Sparkles, Clock, ShieldCheck, Globe } from 'lucide-react'; const App = () => { const [activeStep, setActiveStep] = useState(0); const [scrolled, setScrolled] = useState(false); useEffect(() => { const handleScroll = () => setScrolled(window.scrollY > 50); window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const steps = [ { title: "Brand DNA Discovery", desc: "We don't just prompt; we listen. We map your unique culture and voice so the AI output sounds like your best day, not a generic algorithm.", icon: }, { title: "Competitive Insight", desc: "AI-driven deep dives into the local landscape. We see exactly where your competitors are winning—and more importantly, where they are failing.", icon: }, { title: "Market Gap ID", desc: "We pinpoint the 'empty spaces'—the emotional and visual voids in your industry that are ripe for disruption.", icon: }, { title: "Targeted AI Campaigns", desc: "Deploying high-fidelity commercials and automated production lines to dominate the identified gaps with precision.", icon: } ]; const tiers = [ { name: "The Spotlight", price: "15,000", description: "A single, A-list quality 30s/60s commercial. The high-fidelity alternative to a ₱60k traditional shoot.", features: ["30-60s Cinematic AI Film", "Custom Sound Design", "High-End Color Grading", "4K Resolution"], accent: "border-gray-800" }, { name: "The Lean Engine", price: "25k-30k", description: "The entrepreneur's upgrade. A high-performance presence without the overhead of a full production house.", features: ["3 Social Media Assets", "Brand Voice Alignment", "AI Voiceover Narration", "Unlimited Backgrounds"], accent: "border-blue-500 shadow-[0_0_20px_rgba(59,130,246,0.3)]", featured: true }, { name: "The Partnership", price: "60k-80k", description: "A fully integrated AI marketing ecosystem with custom Brand Ambassadors and automated production.", features: ["Custom AI Avatar/Ambassador", "Bi-Weekly Asset Delivery", "Strategy Retainer", "Priority Access"], accent: "border-lime-400 shadow-[0_0_20px_rgba(163,230,53,0.3)]" } ]; return (
{/* Navigation */} {/* Hero Section */}
GEARED FOR A BETTER FUTURE

The Human Bridge
to AI Fidelity.

We turn cold AI patterns into authentic brand stories. Like the paintbrush to the camera, AI changes the tool—but it can never replace the human storyteller.

SYSTEM: HUMAN_INTERFACE_ACTIVE

Elite Content Production at Athlete Speed.

{/* Comparison Grid */}

The Traditional Way

  • ×

    ₱60k+ per single-day shoot

  • ×

    2-week post-production cycles

  • ×

    Rigid setups: One mistake = Expensive reshoot

ELITE

The NextFrame Way

  • ₱15k for A-list cinematic fidelity

  • 48-hour delivery on key assets

  • Infinite Flexibility: Relight & Swap in the Cloud

{/* The 4-Step Journey */}

Elite Precision Process

Our workflow is lean and scrappy. We eliminate the fluff and focus on high-fidelity execution through a 4-step strategic sprint.

{steps.map((step, idx) => (
setActiveStep(idx)} >
{step.icon}

{step.title}

{step.desc}

))}
{/* Pricing Tiers */}

Service Tiers

High-performance production for every stage of your growth.

{tiers.map((tier, idx) => (

{tier.name}

{tier.price}

{tier.description}

    {tier.features.map((f, i) => (
  • {f}
  • ))}
))}

The Internal Machine

Enterprise/Custom: Proprietary AI systems for large workforces (Real Estate, Casinos, etc.)

{/* Value Proposition / Edge */}
Infinite Flexibility

Relight, change settings, and swap backgrounds in the cloud. We built the set once, you use it forever.

Max Endorsements

Capture a celebrity once; use AI to create a year's worth of personalized assets in their likeness.

All-Access Pipeline

We handle the tools (Veo, Sora, Midjourney) so you get world-class results without managing 20 subscriptions.

Proprietary Assets

Your brand DNA stays yours. We build custom agents and avatars that no one else can use.

The NextFrame Edge

Traditional media is rigid. We are fluid. We operate with an Athlete Mindset—obsessed with speed, precision, and the constant pursuit of high-fidelity output.

01

No Reshoots. Only Refinements.

02

Global Talent. Local Insight.

03

Future-Proofed Media Stack.

{/* Legacy Lab (Phase Expansion) */}
THE LEGACY LAB: EXPANSION PHASES

Prime Preservation

We use AI as a Time Machine. Upscale old photos of elders into cinematic life stories. Don't just remember your story. Relive it.

STATUS: IN DEVELOPMENT

Gala AI Experience

High-end AI Movie Photobooths. Deliver personalized, themed mini-movies to event guests in real-time. The ultimate event flex.

STATUS: PROTOTYPE

The Golden Legacy Teaser

"Two elderly women giggle over a phone, seeing high-definition movies of their younger selves created from old photos."

"Immortalize your appearance."

{/* CTA Footer */}
); }; export default App;