mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
14 lines
246 B
JavaScript
14 lines
246 B
JavaScript
import React from 'react';
|
|
import Link from 'next/link';
|
|
|
|
export default function Header() {
|
|
return (
|
|
<header className="container">
|
|
<h1>
|
|
<Link href="/">
|
|
<a>umami</a>
|
|
</Link>
|
|
</h1>
|
|
</header>
|
|
);
|
|
}
|