Remove double-wrapping of DocsLayout - return raw content
cgen-e5c1428ce0504e1092b92b92aff03101
This commit is contained in:
parent
df0a32bb7c
commit
9fe3f3eaf1
1 changed files with 2 additions and 7 deletions
|
|
@ -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>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue