Components
Loading preview...
Here is Stars Scrolling Wheel component
@animate-ui
npx shadcn@latest add https://21st.dev/r/skyleen77/stars-scrolling-wheel'use client';
import { Component } from "@/components/ui/stars-scrolling-wheel";
const DemoOne = () => {
return (
<div className="size-full flex items-center justify-center">
<Component stars={1000} delay={1000} />
</div>
);
};
export { DemoOne };