generated from lucien/api-template
fix: changed the background color
This commit is contained in:
parent
eae2a483b5
commit
652d6929ef
10 changed files with 15 additions and 3 deletions
|
@ -7,10 +7,12 @@ export default function TopBar({ user }: { user: User | undefined }) {
|
|||
return (
|
||||
<div className="topbar">
|
||||
<div className="topbar-left">
|
||||
<h1>Tanuki's Forum</h1>
|
||||
<Link to="/">Home</Link>
|
||||
<Link to="/channels">Channels</Link>
|
||||
</div>
|
||||
<div className="topbar-center">
|
||||
<h1>Tanuki's Forum</h1>
|
||||
</div>
|
||||
{user ? (
|
||||
<div className="topbar-right">
|
||||
<Link to={`/u/${user.username}`}>{user.username}</Link>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue