"use client";
function ScheduleItem({
time,
label,
color,
}: {
time: string;
label: string;
color: string;
}) {
return (
{time}
{label}
);
}
function InlineModeDiagram() {
return (
Inline Mode
{/* User message */}
I have back-to-back meetings today
{/* AI response */}
Packed day! Here's what you've got:
{/* Prompt input */}
AI decides when UI beats text
AI chatbots
/
Copilots
/
Assistants
);
}
function LandingPage() {
return (
{/* Nav */}
{/* Hero */}
Trusted by 2,000+ teams
Analytics that
move the needle
Ship what matters. No setup required.
{/* Footer */}
Privacy
Terms
Status
);
}
function StandaloneModeDiagram() {
return (
Standalone Mode
{/* Left panel - conversation */}
{/* User message */}
A landing page for my analytics startup
{/* AI text */}
Here's a clean landing page with a hero, nav, and CTAs.
{/* Prompt input */}
{/* Right panel - landing page */}
Prompt in, UI out
Website builders
/
Text-to-widget
/
Dashboards
);
}
export function GenerationModesDiagram() {
return (
);
}