diff options
Diffstat (limited to 'web/src/app/components/Navbar.jsx')
| -rw-r--r-- | web/src/app/components/Navbar.jsx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/web/src/app/components/Navbar.jsx b/web/src/app/components/Navbar.jsx new file mode 100644 index 0000000..242175c --- /dev/null +++ b/web/src/app/components/Navbar.jsx @@ -0,0 +1,25 @@ +import SignOut from "@/app/components/sign-out"; + +export default function Navbar() { + return ( + <nav className="bg-gray-900 text-white"> + <div className="max-w-screen-xl flex items-center justify-between mx-auto p-4"> + <div className="flex items-center space-x-4"> + <h1 className="text-xl font-medium">AleeBot</h1> + <ul> + <li className="inline-block mx-2">Guilds</li> + <li className="inline-block mx-2">Quotes</li> + <li className="inline-block mx-2">Settings</li> + </ul> + </div> + + <div className="flex items-center space-x-4"> + <span>Uptime: 1 day</span> + <span>API v(version)</span> + <span>4.0.0 Beta</span> + <SignOut /> + </div> + </div> + </nav> + ) +} |
