feat(navbar): add modular navbar components and color variables

This commit is contained in:
lila 2026-04-19 17:51:43 +02:00
parent 6dbc16f23d
commit 6c4ef371c1
7 changed files with 154 additions and 48 deletions

View file

@ -0,0 +1,17 @@
import { Link } from "@tanstack/react-router";
const NavLogin = () => {
return (
<Link
to="/login"
className="text-sm font-medium px-4 py-1.5 rounded-full
text-white bg-(--color-primary)
hover:bg-(--color-primary-dark)
transition-colors duration-200"
>
Sign in
</Link>
);
};
export default NavLogin;