"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 (
V
); } const LogoSvg = ( ); if (animated) { return ( {LogoSvg} ); } return LogoSvg; } // Brand text component for the navbar export function CyberBrandText({ className }: { className?: string }) { return ( > VOLGU . CONTESTS ); }