mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 22:54:22 +00:00
27 lines
No EOL
697 B
TypeScript
27 lines
No EOL
697 B
TypeScript
import Link from "next/link";
|
|
import { LoginButton } from "./LoginButton";
|
|
import { UserAvatar } from "./UserAvatar";
|
|
|
|
export function Navbar() {
|
|
return (
|
|
<nav>
|
|
<div className="nav-left">
|
|
<h1>
|
|
<Link href="/">
|
|
Festàpp
|
|
</Link>
|
|
</h1>
|
|
</div>
|
|
<div>
|
|
nome ovviamente WIP
|
|
</div>
|
|
<div className="nav-right">
|
|
<LoginButton
|
|
className="nav-telegram-login"
|
|
botName="festaappbot"
|
|
/>
|
|
<UserAvatar/>
|
|
</div>
|
|
</nav>
|
|
)
|
|
} |