Components
Loading preview...
This component demonstrates a reusable drawer system that can slide in from any direction — top, right, bottom, or left. Instead of duplicating content for each drawer, a shared DrawerInnerContent component is created and reused across all four drawers. The content includes a newsletter signup form with an email input, a subscribe button, and a cancel button. This approach keeps the code clean, consistent, and easy to maintain, while providing users with a flexible way to interact with drawers from different sides of the screen.
npx shadcn@latest add https://21st.dev/r/ruixen.ui/drawer-inner-contentimport DrawerInnerContent from "@/components/ui/drawer-inner-content";
export default function DemoOne() {
return <DrawerInnerContent />;
}