FeaturesSidekickUpdated March 11, 2026
Privacy Policy & Terms of Service Pages Now Live
Privacy Policy & Terms of Service Pages Now Live
Release: v1.0.40
What Changed
The Sidekick footer has always displayed links to /privacy (Privacy Policy) and /terms (Terms of Service). However, neither of those routes previously existed in the application — clicking them returned a 404 Not Found error.
As of v1.0.40, both pages are live:
| Route | Page |
|---|---|
/privacy | Privacy Policy |
/terms | Terms of Service |
Technical Detail
The footer links are defined in src/app/page.tsx at lines 120–121. The fix adds the following new route files:
src/app/privacy/page.tsxsrc/app/terms/page.tsx
Both pages are standard Next.js App Router page components served at their respective paths.
Why This Matters
Broken links to legal pages are a compliance and trust risk. Users clicking these links — particularly during sign-up or account review — now reach valid, readable pages rather than a dead end.