diff --git a/client/components/docs/DocsSupportCTA.tsx b/client/components/docs/DocsSupportCTA.tsx new file mode 100644 index 00000000..79ff8510 --- /dev/null +++ b/client/components/docs/DocsSupportCTA.tsx @@ -0,0 +1,43 @@ +import { Button } from "@/components/ui/button"; +import { Link } from "react-router-dom"; +import { BookOpen, Users } from "lucide-react"; + +interface DocsSupportCTAProps { + title?: string; + description?: string; +} + +export default function DocsSupportCTA({ + title = "Need help getting started?", + description = "Our documentation team updates these guides weekly. If you're looking for tailored onboarding, architecture reviews, or migration support, reach out and we'll connect you with the right experts.", +}: DocsSupportCTAProps) { + return ( +
+

{title}

+

{description}

+
+ + +
+
+ ); +}