Remove double-wrapping of DocsLayout - return raw content

cgen-e5c1428ce0504e1092b92b92aff03101
This commit is contained in:
Builder.io 2025-11-09 09:01:44 +00:00
parent df0a32bb7c
commit 9fe3f3eaf1

View file

@ -8,7 +8,6 @@ import {
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import { Link } from "react-router-dom"; import { Link } from "react-router-dom";
import { Github, ExternalLink, Users } from "lucide-react"; import { Github, ExternalLink, Users } from "lucide-react";
import DocsLayout from "@/components/docs/DocsLayout";
import DocsHeroSection from "@/components/docs/DocsHeroSection"; import DocsHeroSection from "@/components/docs/DocsHeroSection";
import QuickStartSection from "@/components/docs/QuickStartSection"; import QuickStartSection from "@/components/docs/QuickStartSection";
import ResourceSectionsGrid from "@/components/docs/ResourceSectionsGrid"; import ResourceSectionsGrid from "@/components/docs/ResourceSectionsGrid";
@ -18,11 +17,7 @@ import DocsSupportCTA from "@/components/docs/DocsSupportCTA";
export default function DocsOverview() { export default function DocsOverview() {
return ( return (
<DocsLayout <>
title="Documentation"
description="Learn how to build amazing applications with AeThex"
breadcrumbs={[{ label: "Overview" }]}
>
<DocsHeroSection /> <DocsHeroSection />
<QuickStartSection /> <QuickStartSection />
<ResourceSectionsGrid /> <ResourceSectionsGrid />
@ -86,6 +81,6 @@ export default function DocsOverview() {
</div> </div>
<DocsSupportCTA /> <DocsSupportCTA />
</DocsLayout> </>
); );
} }