Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions src/app/_constants/links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/app/_lib/amplitude.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
Loading