import Image from "next/image"; import { cn } from "@/lib/utils/ui"; import { version } from "@/package.json"; interface LogoProps { variant?: "full" | "small"; className?: string; showVersion?: boolean; } export function Logo({ variant = "full", className, showVersion = false, }: LogoProps) { if (variant === "small") { return ( OpenMonetis ); } return (
OpenMonetis OpenMonetis {showVersion && ( v{version} )}
); }