From ff8ad516ad03df05921681d8c2b40885d4ec2e59 Mon Sep 17 00:00:00 2001 From: RanGojo Date: Tue, 17 Sep 2024 19:52:30 +0000 Subject: [PATCH] chore: fix some broken links --- components/common/Footer/Footer.helper.ts | 9 +++++---- pages/_document.tsx | 6 +++--- public/manifest.json | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/components/common/Footer/Footer.helper.ts b/components/common/Footer/Footer.helper.ts index 454211c..a15d7c9 100644 --- a/components/common/Footer/Footer.helper.ts +++ b/components/common/Footer/Footer.helper.ts @@ -15,17 +15,17 @@ export const products: ListItemProps[] = [ openInNewTab: true, }, { - location: './apis', + location: 'https://rango.exchange/apis', title: 'SDK', openInNewTab: false, }, { - location: './apis', + location: 'https://rango.exchange/apis', title: 'API', openInNewTab: false, }, { - location: './widget', + location: 'https://rango.exchange/widget', title: 'Widget', openInNewTab: false, }, @@ -33,7 +33,8 @@ export const products: ListItemProps[] = [ export const documentation: ListItemProps[] = [ { - location: 'https://docs.rango.exchange/integration-quick-start/overview', + location: + 'https://docs.rango.exchange/api-integration/basic-api-single-step', title: 'SDK Docs', openInNewTab: true, }, diff --git a/pages/_document.tsx b/pages/_document.tsx index 0985431..d01667b 100644 --- a/pages/_document.tsx +++ b/pages/_document.tsx @@ -10,7 +10,7 @@ import Document, { const description = 'Track all transactions on Rango Exchange'; const socialTitle = 'Rango Exchange Explorer'; -const BASE_URL = 'https://scan.rango.exchange'; +const BASE_URL = 'https://explorer.rango.exchange'; const APP_NAME = 'Rango Exchange Explorer'; class MyDocument extends Document { @@ -38,7 +38,7 @@ class MyDocument extends Document { @@ -46,7 +46,7 @@ class MyDocument extends Document { diff --git a/public/manifest.json b/public/manifest.json index e94aa26..b000a85 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -18,5 +18,5 @@ "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff", - "homepage_url": "https://scan.rango.exchange" + "homepage_url": "https://explorer.rango.exchange" }