Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x | import Link from "next/link";
import StaticSiteLogoLine from "../images/StaticSiteLogoLine";
const SiteHeader: React.FC = () => {
return (
<>
<nav className="fixed left-1/2 z-10 my-4 -translate-x-1/2">
<Link
href="https://inndex.omg.lol/"
title="The Wandering Inndex - A fan-made index for The Wandering Inn, a universe by pirateaba."
className="mx-auto block w-[15rem]"
>
<StaticSiteLogoLine data-testid="static-site-logo-line" />
</Link>
</nav>
</>
);
};
export default SiteHeader;
|