Wrap DocsCurriculum with Gitbook-style DocsLayout
cgen-3b4fffcd548441ac90f565ae9fecfdd2
This commit is contained in:
parent
7296d79456
commit
48219f6c28
1 changed files with 7 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
||||||
|
import DocsLayout from "@/components/docs/DocsLayout";
|
||||||
import {
|
import {
|
||||||
Accordion,
|
Accordion,
|
||||||
AccordionContent,
|
AccordionContent,
|
||||||
|
|
@ -301,6 +302,11 @@ const supplementalResources = [
|
||||||
|
|
||||||
export default function DocsCurriculum() {
|
export default function DocsCurriculum() {
|
||||||
return (
|
return (
|
||||||
|
<DocsLayout
|
||||||
|
title="Curriculum & Learning Paths"
|
||||||
|
description="Structured learning paths for different skill levels"
|
||||||
|
breadcrumbs={[{ label: "Curriculum" }]}
|
||||||
|
>
|
||||||
<div className="space-y-8">
|
<div className="space-y-8">
|
||||||
<section className="relative overflow-hidden rounded-3xl border border-slate-800/60 bg-slate-900/80 p-8">
|
<section className="relative overflow-hidden rounded-3xl border border-slate-800/60 bg-slate-900/80 p-8">
|
||||||
<div className="pointer-events-none absolute inset-0 bg-[radial-gradient(circle_at_top,_rgba(124,58,237,0.2),transparent_60%)]" />
|
<div className="pointer-events-none absolute inset-0 bg-[radial-gradient(circle_at_top,_rgba(124,58,237,0.2),transparent_60%)]" />
|
||||||
|
|
@ -646,5 +652,6 @@ export default function DocsCurriculum() {
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
</DocsLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue