src/components/logo.tsximport { Image } from '@/components/image'interface LogoProps {className?: stringwidth?: numberheight?: numberdark?: boolean}export function Logo({className = '',width,height,dark = false,}: LogoProps) {return (<Imagerounded="rounded-none"src={dark ? '/images/logo-white.png' : '/images/logo.png'}size="medium"
Showing the first 20 lines.
Get full code