mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 14:44:21 +00:00
Remove navbar
This commit is contained in:
parent
5a4e2e8e1a
commit
706efea2ec
2 changed files with 0 additions and 54 deletions
|
@ -1,27 +0,0 @@
|
|||
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>
|
||||
)
|
||||
}
|
|
@ -1,27 +0,0 @@
|
|||
nav {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
nav h1 {
|
||||
font-size: 32px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.nav-left, .nav-right {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-telegram-login {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
Loading…
Reference in a new issue