mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-20 07:04:38 +00:00
chore(site): added site
This commit is contained in:
parent
ee014b0838
commit
f92184201e
42 changed files with 1904 additions and 44 deletions
24
website/src/pages/index.astro
Normal file
24
website/src/pages/index.astro
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
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 { Integrations } from '../components/Integrations';
|
||||
import { CTASection } from '../components/CTASection';
|
||||
import { Footer } from '../components/Footer';
|
||||
---
|
||||
|
||||
<Layout title="Sandbox Agent SDK - API for Coding Agents">
|
||||
<div class="min-h-screen bg-black text-white selection:bg-accent/30">
|
||||
<Navigation client:load />
|
||||
<main>
|
||||
<Hero client:load />
|
||||
<PainPoints client:visible />
|
||||
<FeatureGrid client:visible />
|
||||
<Integrations client:visible />
|
||||
<CTASection client:visible />
|
||||
</main>
|
||||
<Footer client:visible />
|
||||
</div>
|
||||
</Layout>
|
||||
Loading…
Add table
Add a link
Reference in a new issue