Components
Loading preview...
A hover sidebar, inspired by Supabase's sidebar.
@andrewlu0
npx shadcn@latest add https://21st.dev/r/andrewlu0/sidebar"use client";
import { SessionNavBar } from "@/components/ui/sidebar"
export function SidebarDemo() {
return (
<div className="flex h-screen w-screen flex-row">
<SessionNavBar />
<main className="flex h-screen grow flex-col overflow-auto">
</main>
</div>
);
}