Below is a small preview of what the Sidebar component looks like in the application.
Sidebar Component
The Sidebar component is used in the documentation pages to provide navigation links for different sections. It is designed to be collapsible and responsive, making it a convenient tool for navigating large sets of documentation.
Usage Example
You can use the Sidebar component to add navigation links to the side of your pages. Below is an example of how to include it in your layout:
DocsLayout.tsx
import Sidebar from "@/components/Docs/Sidebar"
export default function DocsLayout() {
return (
<div>
<Sidebar />
{/* Other components and content */}
</div>
)
}