otterscan/src/Logo.tsx

18 lines
428 B
TypeScript
Raw Normal View History

2021-07-01 18:21:40 +00:00
import React from "react";
const Logo: React.FC = () => (
<div className="mx-auto -mt-32 mb-16 text-6xl text-link-blue font-title font-bold cursor-default flex items-center space-x-4">
<img
className="rounded-full"
src="/otter.jpg"
width={96}
height={96}
alt="An otter scanning"
title="An otter scanning"
/>
<span>Otterscan</span>
</div>
);
export default React.memo(Logo);