From 4432cd68156510974ebf835d853235b130e8fbae Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Mon, 17 Feb 2025 22:41:36 +0100 Subject: [PATCH] Update layout.tsx --- web/app/docs/layout.tsx | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/web/app/docs/layout.tsx b/web/app/docs/layout.tsx index 90363b9..df5e869 100644 --- a/web/app/docs/layout.tsx +++ b/web/app/docs/layout.tsx @@ -1,15 +1,16 @@ -import DocSidebar from "@/components/DocSidebar" import type React from "react" +import DocSidebar from "@/components/DocSidebar" +import Footer from "@/components/footer" -export default function DocsLayout({ - children, -}: { - children: React.ReactNode -}) { +export default function DocsLayout({ children }: { children: React.ReactNode }) { return ( -
- -
{children}
+
+
+ +
{children}
+
+
) } +