Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,6 @@ next-env.d.ts

# claude
.claude

# local agent workspace
/.codex
5 changes: 3 additions & 2 deletions app/components/navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,14 @@ export default function Navbar() {
<Link
key={link.label}
href={link.href}
className={`text-xs transition-colors duration-300 ${
className={`group relative pb-1 text-xs transition-colors duration-300 ${
isLightTheme
? "text-[var(--color-surface-foreground)] hover:opacity-70"
: "text-foreground hover:text-foreground/70"
}`}
>
{link.label}
<span>{link.label}</span>
<span className="absolute inset-x-0 bottom-0 h-px origin-left scale-x-0 bg-pink transition-transform duration-300 group-hover:scale-x-100" />
</Link>
))}
<AccentButton>Gallery</AccentButton>
Expand Down
Loading