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