"use client"; import React from "react"; import { motion } from "framer-motion"; import { cn } from "@/lib/utils"; interface VolguLogoProps { className?: string; animated?: boolean; variant?: "default" | "cyber" | "minimal"; } export function VolguLogo({ className = "h-8 w-8", animated = false, variant = "cyber", }: VolguLogoProps) { if (variant === "minimal") { return (