Skip to content

Commit

Permalink
chore: fix some broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
RanGojo committed Sep 17, 2024
1 parent eec17f6 commit ff8ad51
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions components/common/Footer/Footer.helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,26 @@ 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,
},
];

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,
},
Expand Down
6 changes: 3 additions & 3 deletions pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -38,15 +38,15 @@ class MyDocument extends Document {
<meta name="twitter:creator" content="@rangoexchange" />
<meta
name="twitter:image"
content="https://scan.rango.exchange/preview.jpg"
content="https://explorer.rango.exchange/preview.jpg"
/>

<meta property="og:title" content={socialTitle} />
<meta property="og:type" content="site" />
<meta property="og:url" content={`${BASE_URL}/`} />
<meta
property="og:image"
content="https://scan.rango.exchange/preview.jpg"
content="https://explorer.rango.exchange/preview.jpg"
/>
<meta property="og:image:alt" content="Rango Exchange Explorer" />
<meta property="og:description" content={description} />
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff",
"homepage_url": "https://scan.rango.exchange"
"homepage_url": "https://explorer.rango.exchange"
}

0 comments on commit ff8ad51

Please sign in to comment.