Skip to content

Commit

Permalink
fix(tangle-dapp): Fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
yurixander committed Nov 2, 2024
1 parent 3ba5851 commit 1f2d542
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/tangle-dapp/app/claim/EligibleSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ const EligibleSection: FC<Props> = ({
</Typography>

{/* Vesting: based on Tangle Genesis Allocations */}
{/* https://docs.tangle.tools/docs/tokenomics/allocation/ */}
{/* https://docs.tangle.tools/network/tokenomics/allocation */}
<Typography variant="body1" fw="bold" ta="center">
{`${formatTangleBalance(vestingAmount, nativeTokenSymbol)}`}{' '}
will be vested over 24 months with a 1 month cliff.
Expand Down
11 changes: 7 additions & 4 deletions apps/tangle-dapp/constants/faq.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { TESTNET_LEADERBOARD_URL } from '@webb-tools/webb-ui-components/constants';
import type { FAQItem } from '@webb-tools/webb-ui-components/containers/FAQSection';

const EDGEWARE_URL = 'https://www.edgeware.io/';
const ALLOCATION_DOC = 'https://docs.tangle.tools/docs/tokenomics/allocation/';

const ALLOCATION_DOCS_URL =
'https://docs.tangle.tools/network/tokenomics/allocation';

const FAQ = [
{
Expand All @@ -25,7 +28,7 @@ const FAQ = [
{
' genesis or 2023 snapshot participant, you are also eligible to qualify for the airdrop. DOT Validators are also eligible from a March 2024 snapshot. For the full details on the allocation, '
}
<a href={ALLOCATION_DOC} target="_blank" rel="noopener noreferrer">
<a href={ALLOCATION_DOCS_URL} target="_blank" rel="noopener noreferrer">
see our documentation.
</a>
</>
Expand Down Expand Up @@ -56,7 +59,7 @@ const FAQ = [
{
' 2023 Snapshot participants. For the full details on the allocation, '
}
<a href={ALLOCATION_DOC} target="_blank" rel="noopener noreferrer">
<a href={ALLOCATION_DOCS_URL} target="_blank" rel="noopener noreferrer">
see our documentation.
</a>
</>
Expand All @@ -69,7 +72,7 @@ const FAQ = [
{
'Upon claiming, 5% of your airdropped TNT tokens will be immediately liquid. The remaining 95% will be locked for 2 years with a 1-month cliff, after which tokens will vest linearly on a monthly basis.\n\nThis means participants will receive a portion of their vested tokens each month until the full amount has been distributed over the two-year period. For the full details on the allocation, '
}
<a href={ALLOCATION_DOC} target="_blank" rel="noopener noreferrer">
<a href={ALLOCATION_DOCS_URL} target="_blank" rel="noopener noreferrer">
see our documentation.
</a>
</>
Expand Down

0 comments on commit 1f2d542

Please sign in to comment.