import { cn } from "../utils.js"; interface LogoProps { className?: string; showIcon?: boolean; } export function Logo({ className, showIcon = false }: LogoProps) { if (showIcon) { return ( {/* Simple geometric mark - stylized "N" made of two bars */} ); } // Stylized text logo return ( nutri track ); }