Problem:
In production, the releases page sometimes displayed "Content for Releases coming soon..." instead of actual content.
Cause:
Route conflict between /projects/[slug]/releases (dedicated page) and /projects/[slug]/[tab] (generic tab handler).
Next.js occasionally matched the wrong route during static builds.
Fix:
Excluded "releases" from the generic [tab] route so the dedicated releases page always handles those requests.
