2025-08-20 04:12:49 -06:00

8 lines
236 B
TypeScript

import { GradientBackground } from '@/registry/backgrounds/gradient';
export const GradientBackgroundDemo = () => {
return (
<GradientBackground className="absolute inset-0 flex items-center justify-center rounded-xl" />
);
};