Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions app/src/pages/landing/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -321,11 +321,16 @@ export default function Landing({ isAuthenticated = false }: LandingProps) {
</li>
</ul>
<p style={{ marginTop: '1.5rem', color: '#aaa', fontSize: '13px' }}>
{/* TODO(landing): wrap "Read more about Unlinked Access" in
<a href="https://ivpn.net/unlinked-access" target="_blank" rel="noopener noreferrer">…</a>
once the IVPN explainer page is published. Until then the prose stays
unlinked and only the source-code link is active. */}
Read more about Unlinked Access and review the{' '}
Read more about{' '}
<a
href={LINKS.unlinkedAccess}
target="_blank"
rel="noopener noreferrer"
style={{ color: '#aaa', textDecoration: 'underline' }}
>
Unlinked Access
</a>
{' '}and review the{' '}
<a
href={LINKS.unlinkedRepo}
target="_blank"
Expand Down
1 change: 1 addition & 0 deletions app/src/pages/landing/links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export const LINKS = Object.freeze({
ivpnHome,
pricing: `${ivpnHome}/pricing/`,
ivpnTeam: `${ivpnHome}/en/team/`,
unlinkedAccess: `${ivpnHome}/en/unlinked-access/`,
auditReport: `${ivpnHome}/resources/IVP-08-report.pdf`,
moddnsRepo: 'https://github.com/ivpn/moddns',
unlinkedRepo: 'https://github.com/ivpn/unlinked-access',
Expand Down
Loading