mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
feat(frontend): add footer with version number
This commit is contained in:
parent
89faaa508b
commit
2aaf582245
7 changed files with 64 additions and 20 deletions
|
|
@ -8,11 +8,11 @@ export const NavBar: React.FC = () => {
|
|||
const { user, loginWithSpotifyProps } = useAuth();
|
||||
|
||||
return (
|
||||
<nav className="flex items-center justify-between flex-wrap bg-green-500 p-6">
|
||||
<div className="flex items-center justify-between flex-wrap bg-green-500 p-6">
|
||||
<div className="flex items-center flex-shrink-0 text-white mr-6">
|
||||
<span className="font-semibold text-xl tracking-tight">Listory</span>
|
||||
</div>
|
||||
<div className="w-full block flex-grow lg:flex lg:items-center lg:w-auto ">
|
||||
<nav className="w-full block flex-grow lg:flex lg:items-center lg:w-auto ">
|
||||
<div className="text-sm lg:flex-grow">
|
||||
{user && (
|
||||
<>
|
||||
|
|
@ -48,8 +48,8 @@ export const NavBar: React.FC = () => {
|
|||
)}
|
||||
{user && <NavUserInfo user={user} />}
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</nav>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue