Components
Loading preview...
'use client'
import { Glow } from "@/components/ui/glow-1"
export function GlowDemo() {
return (
<div className="flex items-center justify-center min-h-screen bg-black w-full h-full fixed inset-0">
<Glow
hasControls={true}
/>
</div>
)
}
export {GlowDemo}