Components
Loading preview...
A responsive book component.
@shugar
npx shadcn@latest add https://21st.dev/r/shugar/bookimport { Book } from "@/components/ui/book";
export default function WidthDemo() {
return (
<div className="flex gap-8">
<Book title="The user experience of the Frontend Cloud" width={300} />
<Book title="The user experience of the Frontend Cloud" width={200} />
<Book title="The user experience of the Frontend Cloud" width={150} />
</div>
);
}