import Link from 'next/link'; import { cn } from '@kit/ui/utils'; /** * App Logo Image - modify this with your own logo * @param className - The class name to apply to the logo * @param width - The width of the logo * @returns */ export 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 ( ); }