18 lines
428 B
TypeScript
18 lines
428 B
TypeScript
|
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);
|