import Link from 'next/link'; import { cn } from '@kit/ui/utils'; function LogoImage({ className, width = 105, }: { className?: string; width?: number; }) { return ( ); } export function AppLogo({ href, label, className, }: { href?: string | null; className?: string; label?: string; }) { if (href === null) { return ; } return ( ); }