Components
Loading preview...
Here is image reveal component
@ui-layouts
npx shadcn@latest add https://21st.dev/r/uilayout.contact/image-reveal// demo.tsx
import React from 'react';
import Component from '@/components/ui/image-reveal';
const ComponentDemo = () => {
return (
<div className='flex flex-col items-center justify-center gap-12 p-8 bg-black min-h-screen text-white w-full'>
<div className='flex justify-center w-full'>
<div className='flex flex-col items-center gap-4 border p-6 rounded-xl border-white bg-black shadow-lg'>
<h2 className='text-2xl font-semibold mb-2'></h2>
<Component />
</div>
</div>
</div>
);
};
export { ComponentDemo as DemoOne };