From 60e59f022114fb55996ecec3bdcbe8f2aeb76819 Mon Sep 17 00:00:00 2001 From: isra el Date: Tue, 14 Jul 2026 16:02:28 +0300 Subject: [PATCH] fix(web): point Contribute links to canonical marketing page app.textbee.dev/contribute returns 404 (flagged in Ahrefs audit). The public footer/header Contribute links now use the absolute https://textbee.dev/contribute page, consistent with the existing useCases/quickstart routes, fixing the broken link and consolidating to one contribute page. Co-Authored-By: Claude Opus 4.8 (1M context) --- web/config/routes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/config/routes.ts b/web/config/routes.ts index ac0f3c9..fdc4bc4 100644 --- a/web/config/routes.ts +++ b/web/config/routes.ts @@ -1,6 +1,6 @@ export const Routes = { landingPage: 'https://textbee.dev', - contribute: '/contribute', + contribute: 'https://textbee.dev/contribute', useCases: 'https://textbee.dev/use-cases', quickstart: 'https://textbee.dev/quickstart', login: '/login',