diff --git a/site/src/layouts/DocLayout.astro b/site/src/layouts/DocLayout.astro
index 1ea835e..afc8648 100644
--- a/site/src/layouts/DocLayout.astro
+++ b/site/src/layouts/DocLayout.astro
@@ -9,23 +9,6 @@ const headings: MarkdownHeading[] = Astro.props.headings ?? [];
const isIndex =
Astro.url.pathname === "/" || Astro.url.pathname === "/index.html";
const h2s = headings.filter((h) => h.depth === 2);
-const docsSections = [
- {
- title: "Start",
- items: [
- { href: "/installation", label: "Installation" },
- { href: "/quick-start", label: "Quick start" },
- ],
- },
- {
- title: "Reference",
- items: [
- { href: "/commands", label: "Commands" },
- { href: "/architecture", label: "Architecture" },
- { href: "/runtime-contract", label: "Runtime contract" },
- ],
- },
-];
function formatTocText(text: string): string {
if (!text.includes(" ") && /[-.]/.test(text)) {
@@ -57,31 +40,6 @@ function formatTocText(text: string): string {
)
}
- {
- !isIndex && (
-
- {docsSections.map((section) => (
-
- ))}
-
- )
- }
-
{
toc && (