From 862ff172ef84d2ff705327675b3b16f295881706 Mon Sep 17 00:00:00 2001 From: SnapOtter Date: Mon, 8 Jun 2026 11:51:05 +0800 Subject: [PATCH] fix(landing): correct API reference link in footer Footer linked to /api which has no index page, causing a 404. Point to /api/rest to match the docs site navigation. --- apps/landing/src/components/footer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/landing/src/components/footer.tsx b/apps/landing/src/components/footer.tsx index 6a290bee..1c108ab3 100644 --- a/apps/landing/src/components/footer.tsx +++ b/apps/landing/src/components/footer.tsx @@ -13,7 +13,7 @@ const columns = [ title: "Resources", links: [ { label: "Documentation", href: "https://docs.snapotter.com" }, - { label: "API Reference", href: "https://docs.snapotter.com/api" }, + { label: "API Reference", href: "https://docs.snapotter.com/api/rest" }, { label: "Docker Hub", href: "https://hub.docker.com/r/snapotter/snapotter",