Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions src/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import { useState } from "react";
import Link from "next/link";
import { usePathname } from "next/navigation";
import Image from "next/image";
import { ConnectWallet } from "./ConnectWallet";

const NAV_LINKS = [
Expand All @@ -23,9 +24,18 @@ export function NavBar() {
{/* Logo */}
<Link
href="/"
className="text-sm font-semibold tracking-tight text-[var(--text)] transition-opacity hover:opacity-80"
className="flex items-center gap-1.5 transition-opacity hover:opacity-80"
>
PlotLink
<Image
src="/plotlink-logo-symbol.svg"
alt=""
width={20}
height={24}
className="h-5 w-auto"
/>
<span className="font-heading text-sm font-bold tracking-tight text-[var(--text)]">
PlotLink
</span>
</Link>

{/* Desktop nav links */}
Expand Down
Loading