-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use nextjs conventions for metadata files
- Loading branch information
1 parent
2ddf996
commit 466e485
Showing
21 changed files
with
84 additions
and
73 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"short_name": "Rango Exchange Explorer", | ||
"name": "Rango Exchange Explorer", | ||
"description": "Track all transactions on Rango Exchange", | ||
"icons": [ | ||
{ | ||
"src": "favicon.ico", | ||
"sizes": "64x64 32x32 24x24 16x16", | ||
"type": "image/x-icon", | ||
"purpose": "any maskable" | ||
}, | ||
{ | ||
"src": "icon2.png", | ||
"type": "image/png", | ||
"sizes": "128x128", | ||
"purpose": "any maskable" | ||
}, | ||
{ | ||
"src": "icon3.png", | ||
"type": "image/png", | ||
"sizes": "192x192", | ||
"purpose": "any maskable" | ||
}, | ||
{ | ||
"src": "icon4.png", | ||
"type": "image/png", | ||
"sizes": "256x256", | ||
"purpose": "any maskable" | ||
}, | ||
{ | ||
"src": "icon5.png", | ||
"type": "image/png", | ||
"sizes": "512x512", | ||
"purpose": "any maskable" | ||
} | ||
], | ||
"start_url": ".", | ||
"display": "standalone", | ||
"theme_color": "#000000", | ||
"background_color": "#ffffff", | ||
"homepage_url": "https://scan.rango.exchange" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Rango Exchange |
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
User-Agent: * | ||
Allow: / | ||
|
||
# Host | ||
Host: https://rango.exchange | ||
|
||
# Sitemaps | ||
Sitemap: https://rango.exchange/sitemap.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import type { MetadataRoute } from 'next'; | ||
import { WEBSITE_URL } from 'src/constant/meta'; | ||
|
||
export default function sitemap(): MetadataRoute.Sitemap { | ||
return [ | ||
{ | ||
url: WEBSITE_URL, | ||
priority: 0.9, | ||
}, | ||
{ | ||
url: `${WEBSITE_URL}/statistics`, | ||
priority: 0.8, | ||
}, | ||
{ | ||
url: `${WEBSITE_URL}/search`, | ||
priority: 0.8, | ||
}, | ||
{ | ||
url: `${WEBSITE_URL}/swap`, | ||
priority: 0.8, | ||
}, | ||
{ | ||
url: `https://app.rango.exchange/`, | ||
priority: 0.9, | ||
}, | ||
{ | ||
url: `https://docs.rango.exchange`, | ||
priority: 0.9, | ||
}, | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Rango Exchange |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const WEBSITE_URL = 'https://explorer.rango.exchange'; |