Components
Loading preview...
here is gradients component
npx shadcn@latest add https://21st.dev/r/airbnb/gradients
import { GradientsChart } from "@/components/ui/gradients";
const DemoGradientsChart = () => {
const width = 800;
const height = 500;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100">
<GradientsChart width={width} height={height} />
</div>
);
};
export { DemoGradientsChart };