From a3bcab653f265c77182e86c72680640d0b196375 Mon Sep 17 00:00:00 2001 From: Kanishk Khurana Date: Tue, 24 Mar 2026 23:51:20 +0530 Subject: [PATCH 1/2] feat: change docs linnk --- src/app/_constants/links.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/_constants/links.ts b/src/app/_constants/links.ts index 83e7441..3ea496b 100644 --- a/src/app/_constants/links.ts +++ b/src/app/_constants/links.ts @@ -46,7 +46,7 @@ export const INFORMATION_LINKS = { }, docs: { label: "Docs", - href: "https://docs.across.to/v/v3-developer-docs/introduction/what-is-across", + href: "https://docs.across.to/", }, blog: { label: "Blog", @@ -56,9 +56,9 @@ export const INFORMATION_LINKS = { export const INTEGRATION_LINKS = { form: "https://l03pts79sm0.typeform.com/to/p8O9D7wP", - plus: "https://docs.across.to/v/v3-developer-docs/integration-guides/across+-integration", + plus: "https://docs.across.to/", settlement: - "https://docs.across.to/v/v3-developer-docs/concepts/intents-architecture-in-across", + "https://docs.across.to/", }; export const SITE_BASE_URL = "https://across.to" as const; From 1211380941d6944a7513b5cce5362391e7283b20 Mon Sep 17 00:00:00 2001 From: Kanishk Khurana Date: Wed, 25 Mar 2026 00:17:38 +0530 Subject: [PATCH 2/2] chore: formatting --- src/app/_constants/links.ts | 3 +-- src/app/_lib/amplitude.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/_constants/links.ts b/src/app/_constants/links.ts index 3ea496b..de8df77 100644 --- a/src/app/_constants/links.ts +++ b/src/app/_constants/links.ts @@ -57,8 +57,7 @@ export const INFORMATION_LINKS = { export const INTEGRATION_LINKS = { form: "https://l03pts79sm0.typeform.com/to/p8O9D7wP", plus: "https://docs.across.to/", - settlement: - "https://docs.across.to/", + settlement: "https://docs.across.to/", }; export const SITE_BASE_URL = "https://across.to" as const; diff --git a/src/app/_lib/amplitude.ts b/src/app/_lib/amplitude.ts index a5c8238..d26df9a 100644 --- a/src/app/_lib/amplitude.ts +++ b/src/app/_lib/amplitude.ts @@ -42,5 +42,5 @@ export function pageLookup(pathname: string) { const isSpecificBlogPage = /^\/blog\/[a-zA-Z0-9-]+$/.test(pathname); return isSpecificBlogPage ? "marketingBlogSpecificPage" - : AMPLITUDE_PAGE_LOOKUP[pathname] ?? "404Page"; + : (AMPLITUDE_PAGE_LOOKUP[pathname] ?? "404Page"); }