Components
Loading preview...
Animated pattern showcase
npx shadcn@latest add https://21st.dev/r/airbnb/patternsimport { PatternShowcase } from "@/components/ui/patterns";
const DemoPatternShowcase = () => {
const width = 800;
const height = 600;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100">
<PatternShowcase width={width} height={height} />
</div>
);
};
export { DemoPatternShowcase };