From 198cbd10a754d3cd60258118b8d0f9501fb4dae9 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 9 Nov 2025 08:46:38 +0000 Subject: [PATCH] Wrap DocsOverview with Gitbook-style DocsLayout cgen-7124dd3bab654b89a2912cffaffb3023 --- client/pages/docs/DocsOverview.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/client/pages/docs/DocsOverview.tsx b/client/pages/docs/DocsOverview.tsx index 9d87777c..14816d06 100644 --- a/client/pages/docs/DocsOverview.tsx +++ b/client/pages/docs/DocsOverview.tsx @@ -8,6 +8,7 @@ import { import { Button } from "@/components/ui/button"; import { Link } from "react-router-dom"; import { Github, ExternalLink, Users } from "lucide-react"; +import DocsLayout from "@/components/docs/DocsLayout"; import DocsHeroSection from "@/components/docs/DocsHeroSection"; import QuickStartSection from "@/components/docs/QuickStartSection"; import ResourceSectionsGrid from "@/components/docs/ResourceSectionsGrid"; @@ -17,7 +18,11 @@ import DocsSupportCTA from "@/components/docs/DocsSupportCTA"; export default function DocsOverview() { return ( -
+ @@ -81,6 +86,6 @@ export default function DocsOverview() {
- + ); }