Add support CTA to DocsOverview

cgen-c95f44cf603043f18bbb6395b0321c25
This commit is contained in:
Builder.io 2025-10-14 01:33:04 +00:00
parent 7d1802c1f8
commit f57932b1f5

View file

@ -469,6 +469,38 @@ export default function DocsOverview() {
</CardContent>
</Card>
</div>
{/* Support CTA */}
<div className="mt-12 rounded-2xl border border-purple-500/40 bg-purple-900/20 p-8 text-center">
<h3 className="text-3xl font-semibold text-white mb-4">Need help getting started?</h3>
<p className="text-gray-300 max-w-3xl mx-auto mb-6">
Our documentation team updates these guides weekly. If you&apos;re looking for tailored onboarding,
architecture reviews, or migration support, reach out and we&apos;ll connect you with the right experts.
</p>
<div className="flex flex-col sm:flex-row justify-center gap-4">
<Button
asChild
size="lg"
className="bg-gradient-to-r from-aethex-500 to-neon-blue hover:from-aethex-600 hover:to-neon-blue/90"
>
<Link to="/support" className="flex items-center gap-2">
<BookOpen className="h-5 w-5" />
Contact support
</Link>
</Button>
<Button
asChild
variant="outline"
size="lg"
className="border-purple-400/60 text-purple-200"
>
<Link to="/community" className="flex items-center gap-2">
<Users className="h-5 w-5" />
Join the community
</Link>
</Button>
</div>
</div>
</div>
);
}