mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
15 lines
246 B
JavaScript
15 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>
|
||
|
);
|
||
|
}
|