Components
Loading preview...
Here is Perspective Book component
npx shadcn@latest add https://21st.dev/r/tom_ui/perspective-bookimport { PerspectiveBook } from "@/components/ui/perspective-book";
import { BookOpen } from "lucide-react";
export default function Demo() {
return (
<PerspectiveBook>
<div className="flex flex-col gap-4">
<h1 className="font-semibold leading-5">
Your complete platform for the Design.
</h1>
<BookOpen className="size-5" />
</div>
</PerspectiveBook>
);
}