Animated gradient border wrapper with glow effects and multiple presets.
import { BorderGlow } from "@/components/ui/border-glow"; export default function DemoOne() { return ( <div className="flex h-full w-full items-center justify-center"> <BorderGlow height="300px"> <div className="flex h-full items-center justify-center text-center text-lg font-semibold"> Default Glow </div> </BorderGlow> </div> ) }