import { cn } from "@/lib/utils/ui";
import Image from "next/image";
interface LogoProps {
variant?: "full" | "small";
className?: string;
}
export function Logo({ variant = "full", className }: LogoProps) {
if (variant === "small") {
return (