import Link from 'next/link'; import { cn } from '@kit/ui/utils'; /** * App Logo — MYeasyCMS by Com.BISS GmbH * SVG text-based logo for the MYeasyCMS platform */ export function LogoImage({ className, width = 160, }: { className?: string; width?: number; }) { return ( {/* Icon — stylized grid/module squares */} {/* "MY" in bold */} MY {/* "easy" in regular weight */} easy {/* "CMS" in medium weight */} CMS ); } export function AppLogo({ href, label, className, }: { href?: string | null; className?: string; label?: string; }) { if (href === null) { return ; } return ( ); }