add github icon and display breadcrumb on docs home page

This commit is contained in:
Lee
2024-04-21 17:39:00 +01:00
parent 738fcb8e24
commit ec27cd9f29
5 changed files with 58 additions and 18 deletions
public/media
src/app
(pages)/docs
components/docs

@ -1,5 +1,6 @@
import React, { ReactElement } from "react";
import { Search } from "@/app/components/docs/search";
import { Sidebar } from "@/app/components/docs/sidebar";
export default function RootLayout({
children,
@ -8,7 +9,7 @@ export default function RootLayout({
}>): ReactElement {
return (
<div className="w-full flex flex-col items-center gap-2 h-full md:flex-row md:items-start">
<Search />
<Sidebar />
{children}
</div>
);