Compare Slider Demo
loomui/compare-slider-demoFreeExample
A draft and a shipped page split by a divider you drag.
Install it
npx shadcn@latest add https://loomui.design/r/compare-slider-demo.jsonSource
1import { CompareSlider } from "@/registry/loomui/compare-slider"23function Panel({4 label,5 className,6 children,7}: {8 label: string9 className?: string10 children: React.ReactNode11}) {12 return (13 <div className={`h-full w-full p-4 sm:p-6 ${className ?? ""}`}>14 <div className="text-[0.65rem] tracking-[0.2em] uppercase opacity-60">15 {label}16 </div>17 <div className="mt-3 space-y-2">{children}</div>18 </div>19 )20}2122export default function CompareSliderDemo() {23 return (24 <CompareSlider25 label="Compare the draft with the shipped page"26 className="h-64 w-full max-w-2xl rounded-xl border"27 before={28 <Panel label="Draft" className="bg-muted text-muted-foreground">29 <div className="bg-foreground/15 h-3 w-full max-w-40 rounded-full" />30 <div className="bg-foreground/10 h-3 w-full max-w-56 rounded-full" />31 <div className="bg-foreground/10 h-3 w-full max-w-48 rounded-full" />32 <div className="bg-foreground/10 mt-6 h-9 w-28 rounded-md" />33 </Panel>34 }35 after={36 <Panel37 label="Shipped"38 className="from-primary/15 via-background to-background text-foreground bg-linear-to-br"39 >40 <div className="bg-primary h-3 w-full max-w-40 rounded-full" />41 <div className="bg-foreground/30 h-3 w-full max-w-56 rounded-full" />42 <div className="bg-foreground/20 h-3 w-full max-w-48 rounded-full" />43 <div className="bg-primary text-primary-foreground mt-6 grid h-9 w-28 place-items-center rounded-md text-xs font-medium">44 Get started45 </div>46 </Panel>47 }48 />49 )50}
What it pulls in
Other registry items
Files it writes
More from loomui
All 91 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Aurora Backdrop Demoaurora-backdrop-demo | loomui | Examples | Free | no deps | |
| Bento Grid Demobento-grid-demo | loomui | Examples | Free | no deps | |
| Card Stack Democard-stack-demo | loomui | Examples | Free | no deps | |
| Confetti Button Democonfetti-button-demo | loomui | Examples | Free | no deps | |
| Count Up Democount-up-demo | loomui | Examples | Free | no deps | |
| Credit Card Democredit-card-demo | loomui | Examples | Free | no deps | |
| Drawer Demodrawer-demo | loomui | Examples | Free | no deps | |
| Elastic Tabs Demoelastic-tabs-demo | loomui | Examples | Free | no deps |
