otterscan/src/Logo.tsx

19 lines
450 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 = () => (
2022-08-30 22:12:40 +00:00
<div className="text-6xl text-link-blue font-title font-bold cursor-default flex items-center justify-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);