A sidebar with a logo, different sections, profile button, upgrade button, note that it only supports dark mode.
import React from "react"; import { BrowserRouter } from "react-router-dom"; import { Sidebar } from "@/components/ui/sidebar"; export default function SidebarDemo() { return ( <BrowserRouter> <Sidebar /> </BrowserRouter> ); }