2021-07-01 18:21:40 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
const Logo: React.FC = () => (
|
2021-07-10 06:17:07 +00:00
|
|
|
<div className="mx-auto mb-16 text-6xl text-link-blue font-title font-bold cursor-default flex items-center space-x-4">
|
2021-07-01 18:21:40 +00:00
|
|
|
<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);
|