"use client"; import { cn } from "@/lib/utils"; interface AnimatedBorderProps { className?: string; } export const AnimatedBorder = ({ className }: AnimatedBorderProps) => { return ( <>
); };