From cce9ee3c7c5c3126b5242154744f20cfe305646a Mon Sep 17 00:00:00 2001 From: tonym Date: Mon, 17 Aug 2026 00:02:34 -0500 Subject: [PATCH] feat: Show me more + back-to-top at the bottom of results (v0.5.1) Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01XStQKxPfEjrTvWo83KFCxG --- package.json | 2 +- src/app/globals.css | 7 +++++++ src/components/Finder.tsx | 8 ++++++++ src/lib/version.ts | 7 ++++++- 4 files changed, 22 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index bbc1060..a3d3b41 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "names-poweredbyotm", - "version": "0.5.0", + "version": "0.5.1", "private": true, "scripts": { "dev": "next dev --port 3000", diff --git a/src/app/globals.css b/src/app/globals.css index 2dd1de6..ebbf2d8 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -318,6 +318,13 @@ h2 { width: auto; } +.results-more { + display: flex; + align-items: center; + gap: 12px; + margin-top: 18px; +} + .ai-badge { display: inline-block; padding: 1px 6px; diff --git a/src/components/Finder.tsx b/src/components/Finder.tsx index 9a029c8..4b1d8e6 100644 --- a/src/components/Finder.tsx +++ b/src/components/Finder.tsx @@ -376,6 +376,14 @@ export default function Finder() { /> ))} +
+ + +
)} diff --git a/src/lib/version.ts b/src/lib/version.ts index 483bdd9..d6d35d6 100644 --- a/src/lib/version.ts +++ b/src/lib/version.ts @@ -2,7 +2,7 @@ // /changelog. Bump VERSION and prepend an entry when shipping a user-facing // change. Same convention as rpo. -export const VERSION = "0.5.0"; +export const VERSION = "0.5.1"; export interface ChangelogEntry { version: string; @@ -11,6 +11,11 @@ export interface ChangelogEntry { } export const CHANGELOG: ChangelogEntry[] = [ + { + version: "0.5.1", + date: "2026-08-17", + changes: ["A second 'Show me more' button at the bottom of the results, with a back-to-top link, so a full page of names doesn't need a scroll up to continue."], + }, { version: "0.5.0", date: "2026-08-16",