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 (
);
}
export function AppLogo({
href,
label,
className,
}: {
href?: string | null;
className?: string;
label?: string;
}) {
if (href === null) {
return ;
}
return (
);
}