navbar site name changes
- removed link for site name - added tooltip dropdown for alpha badge
This commit is contained in:
@@ -1,17 +1,36 @@
|
|||||||
import { IconUser, IconSun, IconMoon } from "@tabler/icons-react";
|
import { IconUser, IconSun, IconMoon } from "@tabler/icons-react";
|
||||||
import Link from "next/link";
|
|
||||||
|
|
||||||
export default function Navbar() {
|
export default function Navbar() {
|
||||||
return (
|
return (
|
||||||
<header className="navbar mx-1 w-auto justify-center drop-shadow-sm md:mx-16 lg:mx-40">
|
<header className="navbar mx-1 w-auto justify-center drop-shadow-sm md:mx-16 lg:mx-40">
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
<Link
|
<span className="btn btn-ghost no-animation cursor-default gap-1 text-xl normal-case hover:bg-transparent">
|
||||||
href="/"
|
|
||||||
className="btn btn-ghost no-animation gap-1 text-xl normal-case hover:bg-transparent"
|
|
||||||
>
|
|
||||||
chessu
|
chessu
|
||||||
<span className="badge badge-sm mt-1">alpha</span>
|
<div className="dropdown">
|
||||||
</Link>
|
<label tabIndex={0} className="badge badge-sm mt-1 cursor-help">
|
||||||
|
alpha
|
||||||
|
</label>
|
||||||
|
<div
|
||||||
|
tabIndex={0}
|
||||||
|
className="dropdown-content card card-compact bg-primary text-primary-content w-64 shadow"
|
||||||
|
>
|
||||||
|
<div className="card-body cursor-default">
|
||||||
|
<p className="text-left text-xs">
|
||||||
|
This project is a work in progress. You can view the roadmap{" "}
|
||||||
|
<a
|
||||||
|
href="https://github.com/users/nizewn/projects/2"
|
||||||
|
target="_blank"
|
||||||
|
rel="noreferrer"
|
||||||
|
className="link"
|
||||||
|
>
|
||||||
|
here
|
||||||
|
</a>
|
||||||
|
.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex-none">
|
<div className="flex-none">
|
||||||
<div className="btn btn-ghost btn-circle">
|
<div className="btn btn-ghost btn-circle">
|
||||||
|
|||||||
Reference in New Issue
Block a user