Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
overview
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquim-verges committed Jul 28, 2024
1 parent e1caec7 commit d0245c0
Show file tree
Hide file tree
Showing 3 changed files with 379 additions and 338 deletions.
12 changes: 11 additions & 1 deletion src/app/connect/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
import { DocLayout } from "@/components/Layouts/DocLayout";
import { sidebar } from "./sidebar";
import { PlatformSelector } from "../../components/others/PlatformSelector";

export default async function Layout(props: { children: React.ReactNode }) {
return (
<DocLayout sideBar={sidebar} editPageButton={true}>
<DocLayout
sideBar={sidebar}
editPageButton={true}
sidebarHeader={
<div className="flex-col items-center gap-1">
<p className="py-5 text-lg font-semibold text-f-100">Connect</p>
<PlatformSelector selected="Overview" />
</div>
}
>
{props.children}
</DocLayout>
);
Expand Down
Loading

0 comments on commit d0245c0

Please sign in to comment.