mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01: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>
|
|
);
|
|
}
|