/* eslint-disable @next/next/no-img-element */ import { cn } from "@/utils/cn"; interface GlowingImageProps { src: string; alt: string; width: number; height: number; className?: string; } export function GlowingImage({ src, alt, width, height, className }: GlowingImageProps) { return (
{alt}
); }