import { cn } from '@/lib/cn'; // Official 3x-ui logo (media/3x-ui-{light,dark}.png from the upstream repo). // Theme-aware via Tailwind's `dark:` variant. Pass a height class (e.g. `h-6`); // width scales automatically (the artwork is 2:1). export function Logo({ className }: { className?: string }) { return ( <> {/* eslint-disable-next-line @next/next/no-img-element */} 3x-ui {/* eslint-disable-next-line @next/next/no-img-element */} 3x-ui ); }