Components
Loading preview...
Here is Rounded Box component
npx shadcn@latest add https://21st.dev/r/kristen17/rounded-box// src/demos/default.tsx
'use client';
import React from 'react';
import { SpinningSphereBackground } from '@/components/ui/rounded-box';
const DefaultDemo: React.FC = () => {
return (
<div style={{ width: '100vw', height: '100vh', position: 'relative' }}>
<SpinningSphereBackground />
{/* You can add other content here that floats above the canvas if needed */}
</div>
);
};
export default DefaultDemo;