diff --git a/web/app/docs/layout.tsx b/web/app/docs/layout.tsx index 678fdb2..0037746 100644 --- a/web/app/docs/layout.tsx +++ b/web/app/docs/layout.tsx @@ -1,15 +1,17 @@ -import type React from "react" -import DocSidebar from "@/components/DocSidebar" -import Footer from "@/components/footer" +import type { ReactNode } from "react" +import DocSidebar from "@/components/doc-sidebar" -export default function DocsLayout({ children }: { children: React.ReactNode }) { +interface LayoutProps { + children: ReactNode +} + +export default function DocsLayout({ children }: LayoutProps) { return ( -
-
- -
{children}
-
-
- - - -) +

Documentation

+ + + + ) } + +