const Hero = () => {
return (
{/* Background grid + radial wash */}
{/* Interactive berry constellation + click-to-launch rockets */}
{/* LEFT: copy */}
AI · Innovate · Elevate
Launch intelligent
systems. Elevate
real outcomes.
Rocketberry is an AI engineering firm that automates workflows, accelerates decisions, and transforms operations — built end-to-end with AI-Driven Development.
{/* Inline trust strip */}
SOC2-aligned
Cloud-native
API-first
{/* RIGHT: animated AI workflow visual */}
{/* Logo cloud */}
Powered by the tools enterprise AI trusts
);
};
const HeroVisual = () => {
return (
{/* connecting flowing paths */}
{/* Input nodes */}
{[
{ y: 90, label: 'CRM events', color: '#D6248C' },
{ y: 180, label: 'Documents', color: '#A14BCC' },
{ y: 270, label: 'API streams', color: '#1F2754' },
].map((n,i) => (
{n.label}
))}
{/* Center AI core */}
AIDD
core
{/* Output nodes */}
{[
{ y: 100, label: 'Decisions', color: '#7027A8' },
{ y: 180, label: 'Automations', color: '#1F2754' },
{ y: 260, label: 'Insights', color: '#D6248C' },
].map((n,i) => (
{n.label}
))}
{/* Stat strip bottom */}
throughput
12,480 ops/min
latency p95
142 ms
accuracy
98.6%
{/* Floating tag */}
→ trigger
invoice.received
← outcome
approved · 0.4s
);
};
const LogoMarquee = () => {
// Text-based marquee showing the AI tech stack & methodologies Rocketberry works with.
// Swap in real partner/customer logos later once available.
const items = [
'OpenAI', 'Anthropic', 'AWS Bedrock', 'Azure AI',
'LangChain', 'LlamaIndex', 'Pinecone', 'Snowflake',
'Hugging Face', 'NVIDIA', 'Vercel', 'Supabase',
'PyTorch', 'TensorFlow', 'Databricks', 'PostgreSQL',
];
const repeated = [...items, ...items];
return (
{repeated.map((n, i) => (
{n}
))}
);
};
window.Hero = Hero;