From dca0de9a7e80611ff2afc7e6fa3387fd5d69e3f0 Mon Sep 17 00:00:00 2001 From: ashim-hq Date: Fri, 24 Apr 2026 00:19:17 +0800 Subject: [PATCH] fix: use absolute paths for footer anchor links so they work from all pages --- apps/landing/src/components/footer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/landing/src/components/footer.tsx b/apps/landing/src/components/footer.tsx index 4fef6c98..ed5c529f 100644 --- a/apps/landing/src/components/footer.tsx +++ b/apps/landing/src/components/footer.tsx @@ -4,8 +4,8 @@ const columns = [ { title: "Product", links: [ - { label: "Features", href: "#features" }, - { label: "Pricing", href: "#pricing" }, + { label: "Features", href: "/#features" }, + { label: "Pricing", href: "/#pricing" }, { label: "Enterprise", href: "/contact" }, ], },