// pages/home.jsx — assembles all home sections
function HomePage() {
  useSEO("Vela — Secure Code Execution for AI Agents", "Vela provides secure micro-VM execution for AI agents.");
  return (
    <>
      <HeroSection />
      <ProblemSection />
      <HowItWorksSection />
      <FeatureGridSection />
      <IntegrationsSection />
      <CodeDemoSection />
      <TestimonialsSection />
      <OpenSourceSection />
      <CTASection />
    </>
  );
}
Object.assign(window, { HomePage });
