otterscan/src/Logo.tsx

19 lines
443 B
TypeScript
Raw Normal View History

2021-07-01 18:21:40 +00:00
import React from "react";
2021-10-21 21:25:57 +00:00
import Otter from "./otter.jpg";
2021-07-01 18:21:40 +00:00
const Logo: React.FC = () => (
2021-10-22 12:29:54 +00:00
<div className="mx-auto 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"
2021-10-21 21:25:57 +00:00
src={Otter}
2021-07-01 18:21:40 +00:00
width={96}
height={96}
alt="An otter scanning"
title="An otter scanning"
/>
<span>Otterscan</span>
</div>
);
export default React.memo(Logo);