diff --git a/src/app/_constants/links.ts b/src/app/_constants/links.ts index 83e7441..de8df77 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,8 @@ 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", - settlement: - "https://docs.across.to/v/v3-developer-docs/concepts/intents-architecture-in-across", + plus: "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"); }