Skip to content

Commit

Permalink
Fix docs link
Browse files Browse the repository at this point in the history
  • Loading branch information
ardier16 committed Jul 23, 2024
1 parent 6ef7655 commit dae97aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/Announcement/Announcement.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import './Announcement.scss';
const LAUNCH_DATE = new Date('2024-06-27');
const DAYS_LEFT = Math.ceil((LAUNCH_DATE - new Date()) / (1000 * 60 * 60 * 24));
const ANNOUNCEMENT_MESSAGE =
DAYS_LEFT === 0
DAYS_LEFT <= 0
? 'RariMe app launched!'
: `RariMe app launching in ${DAYS_LEFT} ${
DAYS_LEFT === 1 ? 'day' : 'days'
Expand Down
6 changes: 1 addition & 5 deletions src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const CONFIG = {
telegramLink:
'https://telegram.me/collablandbot?start=VFBDI1RFTCNDT01NIy0xMDAyMDg2MjkwNjk3',
docsLink: 'https://docs.rarimo.com',
docsOverviewLink: 'https://docs.rarimo.com/overview',
docsOverviewLink: 'https://docs.rarimo.com',
whitepaperLink: 'https://docs.rarimo.com/whitepaper',
passportsDocsLink: 'https://docs.rarimo.com/ecosystem/freedom-tool/',
scalingDocsLink:
Expand All @@ -25,8 +25,4 @@ export const CONFIG = {
// Use cases
nftCheckoutDocsLink:
'https://docs.rarimo.com/overview/applications/settlement-integration',
crosschainProofsDocsLink:
'https://docs.rarimo.com/overview/applications/cross-chain-proofs',
multichainMintingDocsLink:
'https://docs.rarimo.com/overview/applications/cross-chain-minting',
};

0 comments on commit dae97aa

Please sign in to comment.