Components
A sleek, theme-aware landing page designed to showcase AI voice agents. Features animated hero sections, call-to-action buttons, and responsive layout optimized for product onboarding and demos.
npx @21st-dev/cli add dhileepkumargm/ai-voice-agent-landing-pageLoading preview...
import React from 'react';
import { Header, Hero, AgentCard } from '@/components/ui/ai-voice-agent-landing-page';
function App() {
return (
<div className="relative min-h-screen">
{/* Background Blurs */}
<div className="gradient-blur-circle-1"></div>
<div className="gradient-blur-circle-2"></div>
<div className="relative z-10">
<Header />
<Hero />
<AgentCard />
</div>
</div>
);
}
export default App;