diff --git a/client/components/docs/QuickStartSection.tsx b/client/components/docs/QuickStartSection.tsx index f1bb2928..9e227332 100644 --- a/client/components/docs/QuickStartSection.tsx +++ b/client/components/docs/QuickStartSection.tsx @@ -16,6 +16,7 @@ import { Link as LinkIcon, LucideIcon, } from "lucide-react"; +import { useDocsTheme } from "@/contexts/DocsThemeContext"; export interface QuickStartCard { title: string; @@ -87,36 +88,51 @@ interface QuickStartSectionProps { export default function QuickStartSection({ cards = defaultCards, }: QuickStartSectionProps) { + const { colors, theme } = useDocsTheme(); + return (