mango-web/components/Logo.tsx

10 lines
207 B
TypeScript

export default function Logo() {
return (
<>
<img height="40px" width="40px" src="/mango.png" />
<span style={{ fontWeight: 700, marginRight: '1em' }}>
Mango Markets
</span>
</>);
};