Components
Loading preview...
A React component that renders multiple animated SVG arcs rotating at different speeds around a central badge. The central text displays a continuously cycling gradient, all styled on a dark full-screen background using Tailwind CSS
npx shadcn@latest add https://21st.dev/r/minhxthanh/spinning-arc-logo-with-gradient-text-1import Logo from "@/components/ui/spinning-arc-logo-with-gradient-text-1";
const DemoOne = () => {
return (
<div className="min-h-screen bg-white dark:bg-black flex items-center justify-center overflow-visible">
<div className="flex items-center justify-center">
<Logo size={500} />
</div>
</div>
);
};
export { DemoOne };