Back to notes
๐งDevelopment
Park Labs Website Improvements
August 27, 2025
3 min
Fixed UI bugs, resolved routing issues, improved translations - general website improvement work.
Today was a chore day. Knocked out a bunch of accumulated bugs and improvements all at once.
๐จ UI/UX fixes
The "$1B Unicorn" text in the Progress Bar was wrapping to a new line - fixed with a single whitespace-nowrap. These tiny things are surprisingly annoying.
Language Selector text alignment was off. Added text-center.
๐ Routing bugs
Clicking an Experiment Card was giving 404s. The locale info was missing from the i18n structure. Fixed by adding locale to all links.
Footer menu had the same problem, so I fixed that too.
i18n routing requires way more link management than I expected.
๐ Translation improvements
Changed "Sharing a transparent journey" to "Sharing failures and successes." Feels more honest.
Unified the Footer tagline to "One-Person Unicorn Lab."
๐ ๏ธ Code cleanup
Removed unnecessary React imports, unified to named imports
Found some unused CSS classes, but I'll clean those up later
I thought it was just boring chores, but actually felt pretty good after finishing. I think I finally properly understand the i18n routing structure now.
#development#UI/UX#i18n#refactoring