A stunning and functional retractable sidebar for Next.js built on top of shadcn/ui complete with desktop and mobile responsiveness.
- Retractable mini and wide sidebar
- Scrollable sidebar menu
- Sheet menu for mobile
- Grouped menu with labels
- Collapsible submenu
- Extracted menu items list
- Next.js 14
- Shadcn/ui
- Tailwind CSS
- TypeScript
- Zustand
If you are using @shadcn/ui 2.0.0 or later, you can install the component directly from the registry.
npx shadcn@latest add https://raw.githubusercontent.com/salimi-my/shadcn-ui-sidebar/refs/heads/master/public/registry/shadcn-sidebar.json
or
npx shadcn@latest add https://shadcn-ui-sidebar.salimi.my/registry/shadcn-sidebar.json
//layout.tsx
import AdminPanelLayout from "@/components/admin-panel/admin-panel-layout";
export default async function Layout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return <AdminPanelLayout>{children}</AdminPanelLayout>;
}
//page.tsx
import { ContentLayout } from "@/components/admin-panel/content-layout";
export default function Page() {
return (
<ContentLayout title="Test">
<div>Test</div>
</ContentLayout>
);
}
-
Clone the repository
git clone https://github.com/salimi-my/shadcn-ui-sidebar
-
Install dependencies
cd shadcn-ui-sidebar npm install
-
Run the development server
npm run dev
The app is hosted on Vercel. Click here to visit.
Direct demo link: https://shadcn-ui-sidebar.salimi.my