We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53711b1 commit 137184bCopy full SHA for 137184b
1 file changed
src/pages/index.astro
@@ -1,6 +1,7 @@
1
---
2
import BaseLayout from "../layouts/BaseLayout.astro";
3
import Header from "../components/Header.astro";
4
+import Sidebar from "../components/Sidebar.astro";
5
import Footer from "../components/Footer.astro";
6
import { getCollection } from "astro:content";
7
import { groupByPart, type ChapterMeta } from "../lib/chapters";
@@ -21,6 +22,7 @@ const totalChapters = allChapters.filter((c) => c.chapter).length;
21
22
23
<BaseLayout title="The Agentic Engineering Guide | AI Agent Infrastructure Book">
24
<Header />
25
+ <Sidebar chapters={allChapters} currentSlug="" />
26
27
<main class="pt-14">
28
<!-- Hero -->
0 commit comments