Morphing Navigation Bar
Morphing Navigation Bar is a React and Tailwind CSS text component from Kokonut UI, licensed MIT. Copy it and paste it into your project.
Kokonut UI
MIT
text
What it is
Morphing Navigation Bar is a React and Tailwind CSS text component from Kokonut UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i clsx
Licence
This component comes from Kokonut UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Morphing Navigation Bar
"use client";
import clsx from "clsx";
import Link from "next/link";
import { useState } from "react";
interface NavItem {
name: string;
}
interface MorphicNavbarProps {
items?: Record<string, NavItem>;
defaultPath?: string;
className?: string;
}
const DEFAULT_NAV_ITEMS: Record<string, NavItem> = {
"/": { name: "home" },
"/works": { name: "works" },
"/blog": { name: "blog" },
"/about": { name: "about" },
};
export function MorphicNavbar({
items = DEFAULT_NAV_ITEMS,
defaultPath = "/",
className,
}: MorphicNavbarProps) {
const [activePath, setActivePath] = useState(defaultPath);
const isActiveLink = (path: string) => {
if (path === "/") {
return activePath === "/";
}
return activePath.startsWith(path);
};
return (
<nav className={clsx("mx-auto max-w-4xl px-4 py-2", className)}>
<div className="flex items-center justify-center">
<div className="glass flex items-center justify-between overflow-hidden rounded-xl">
{Object.entries(items).map(([path, { name }], index, array) => {
const isActive = isActiveLink(path);
const isFirst = index === 0;
const isLast = index === array.length - 1;
const prevPath = index > 0 ? array[index - 1][0] : null;
const nextPath =
index < array.length - 1 ? array[index + 1][0] : null;
return (
<Link
className={clsx(
"flex items-center justify-center bg-black p-1.5 px-4 text-sm text-white transition-all duration-300 dark:bg-white dark:text-black",
isActive
? "mx-2 rounded-xl font-semibold text-sm"
: clsx(
(isActiveLink(prevPath || "") || isFirst) &&
"rounded-l-xl",
(isActiveLink(nextPath || "") || isLast) &&
"rounded-r-xl"
)
)}
href="#"
key={path}
onClick={() => setActivePath(path)}
>
{name}
</Link>
);
})}
</div>
</div>
</nav>
);
}
export default MorphicNavbar;