mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 06:04:43 +00:00
26 lines
846 B
Text
26 lines
846 B
Text
---
|
|
import Layout from "../layouts/Layout.astro";
|
|
import { Navigation } from "../components/Navigation";
|
|
import { Hero } from "../components/Hero";
|
|
import { PainPoints } from "../components/PainPoints";
|
|
import { FeatureGrid } from "../components/FeatureGrid";
|
|
import { GetStarted } from "../components/GetStarted";
|
|
|
|
import { Inspector } from "../components/Inspector";
|
|
import { FAQ } from "../components/FAQ";
|
|
import { Footer } from "../components/Footer";
|
|
---
|
|
|
|
<Layout title="Sandbox Agent SDK - Run Coding Agents in Sandboxes. Control Them Over HTTP.">
|
|
<Navigation client:load />
|
|
<main>
|
|
<Hero client:load />
|
|
<PainPoints client:visible />
|
|
<FeatureGrid client:visible />
|
|
<GetStarted client:visible />
|
|
|
|
<Inspector client:visible />
|
|
<FAQ client:visible />
|
|
</main>
|
|
<Footer client:visible />
|
|
</Layout>
|