aboutsummaryrefslogtreecommitdiff
path: root/web/src/app/components/Navbar.jsx
blob: 242175cdface8e9f0685f8ae37405310916e1186 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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>
    )
}