From ffd2e7e2a8a3f2a5bc8aaeaeb7f881b709932bc5 Mon Sep 17 00:00:00 2001 From: Bereket Engida Date: Thu, 19 Mar 2026 16:07:47 -0700 Subject: [PATCH] chore: add redirect for legal --- landing/next.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/landing/next.config.js b/landing/next.config.js index de2db9bbc2..41310ad9b4 100644 --- a/landing/next.config.js +++ b/landing/next.config.js @@ -51,6 +51,16 @@ const nextConfig = { destination: "/products/infrastructure", permanent: true, }, + { + source: "/terms", + destination: "/legal/terms", + permanent: true, + }, + { + source: "/privacy", + destination: "/legal/privacy", + permanent: true, + }, ]; }, };