Book

PreviousNext

A 3D styled, interactive book component with multiple variants and props.

Installation

pnpm dlx shadcn@latest add https://aliimam.in/r/book.json

Usage

import { Book } from "@/components/ui/book"
 
<Book
  title="The Great Adventure"
  author="John Doe"
  spineText="Adventure"
  bookmark
  variant="hardcover"
  animation="hover"
>
  <p>This is some content inside the book.</p>
</Book>