import { buttonVariants } from "@/components/ui/button"; import { cn } from "@/lib/utils"; import { Link } from "react-router"; import { DEMO_LINK, DOCS_LINK, GITHUB_LINK } from "./constants"; import Logo from "/icons/karakeep-full.svg?url"; export default function NavBar() { return (
logo {/* Mobile navigation - show essential buttons */}
Pricing Login
{/* Desktop navigation - show all items */}
Pricing Docs GitHub Login Try Demo
); }