mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-16 03:02:03 +00:00
22 lines
725 B
Text
22 lines
725 B
Text
---
|
|
import Layout from '../layouts/Layout.astro';
|
|
import { Navigation } from '../components/Navigation';
|
|
import { Hero } from '../components/Hero';
|
|
import { FeatureGrid } from '../components/FeatureGrid';
|
|
import { FAQ } from '../components/FAQ';
|
|
import { CTASection } from '../components/CTASection';
|
|
import { Footer } from '../components/Footer';
|
|
---
|
|
|
|
<Layout title="Coding Agent SDK - Universal SDK for Coding Agents">
|
|
<div class="min-h-screen bg-black text-white selection:bg-accent/30">
|
|
<Navigation client:load />
|
|
<main>
|
|
<Hero client:load />
|
|
<FeatureGrid client:visible />
|
|
<FAQ client:visible />
|
|
<CTASection client:visible />
|
|
</main>
|
|
<Footer client:visible />
|
|
</div>
|
|
</Layout>
|