Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change trisa.dev links to trisa.io #1171

Merged
merged 2 commits into from
Jun 18, 2024
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
6 changes: 3 additions & 3 deletions web/gds-user-ui/src/components/Footer/LandingFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const Footer = (): React.ReactElement => {
<Flex width="100%" wrap="wrap">
<Text width="100%" textAlign="center" color="white" fontSize="sm">
<Trans id="A component of">A component of</Trans>{' '}
<Link href="https://trisa.dev" color={colors.system.cyan}>
<Link isExternal href="https://trisa.io" color={colors.system.cyan}>
<Trans id="the TRISA architecture">the TRISA architecture</Trans>
</Link>{' '}
<Trans id="for Cryptocurrency Travel Rule compliance.">
Expand All @@ -27,12 +27,12 @@ const Footer = (): React.ReactElement => {
</Text>
<Text width="100%" textAlign="center" color="white" fontSize="sm">
<Trans id="Created and maintained by">Created and maintained by</Trans>{' '}
<Link href="https://rotational.io" color={colors.system.cyan}>
<Link isExternal href="https://rotational.io" color={colors.system.cyan}>
{' '}
Rotational Labs
</Link>{' '}
<Trans id="on behalf of">on behalf of</Trans>{' '}
<Link href="https://trisa.dev" color={colors.system.cyan}>
<Link isExternal href="https://trisa.io" color={colors.system.cyan}>
TRISA
</Link>{' '}
</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('<LandingHeader />', () => {
render(<LandingHeader />, { locale: 'en' });

expect(screen.getByText(/documentation/i)).toHaveAttribute('href', `${TRISA_BASE_URL}/en`);
expect(screen.getByText(/about trisa/i)).toHaveAttribute('href', 'https://trisa.dev/reference/faq/index.html');
expect(screen.getByText(/about trisa/i)).toHaveAttribute('href', 'https://trisa.io');
});

it('should target the german website', async () => {
Expand Down
4 changes: 2 additions & 2 deletions web/gds-user-ui/src/components/Header/LandingHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const LandingHeader = (props: FlexProps): JSX.Element => {
<Stack pr={2}>
<LanguagesDropdown />
</Stack>
<MenuItem to="https://trisa.dev/reference/faq/index.html" data-testid="about">
<MenuItem to="https://trisa.io" data-testid="about">
<Trans id="About TRISA">About TRISA</Trans>
</MenuItem>
<MenuItem data-testid="documentation" to={`${TRISA_BASE_URL}/${locale}`}>
Expand Down Expand Up @@ -112,7 +112,7 @@ const LandingHeader = (props: FlexProps): JSX.Element => {
}}
/>
<DrawerBody mt="50px" px={5}>
<MenuItem to="https://trisa.dev/reference/faq/index.html" color="white" pb={0}>
<MenuItem to="https://trisa.io" color="white" pb={0}>
<Trans id="About TRISA">About TRISA</Trans>
</MenuItem>
<MenuItem to={`${TRISA_BASE_URL}/${locale}`} color="white">
Expand Down
2 changes: 1 addition & 1 deletion web/gds-user-ui/src/components/Section/AboutUs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const AboutTrisaSection: React.FC = () => {
<Text
color={useColorModeValue('black', 'white')}
fontSize={{ base: '16px', md: '17px' }}>
<Link isExternal color={colors.system.link} href={'https://trisa.dev'}>
<Link isExternal color={colors.system.link} href={'https://trisa.io'}>
<Trans id="The Travel Rule Information Sharing Architecture (TRISA)">
The Travel Rule Information Sharing Architecture (TRISA)
</Trans>{' '}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default function IntegrateAndComply() {
</Link>
</ListItem>
<ListItem>
<Link href="https://trisa.dev/" isExternal>
<Link href="https://trisa.dev" isExternal>
<Trans id="Documentation">Documentation</Trans>
</Link>
</ListItem>
Expand Down
8 changes: 4 additions & 4 deletions web/gds-user-ui/src/components/Section/JoinUs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const JoinUsSection: React.FC = () => {
<Link
isExternal
textDecoration={'underline'}
href="https://trisa.dev/reference/faq/index.html">
href="https://trisa.io/getting-started-with-trisa/">
<Trans id="Learn how TRISA works.">Learn how TRISA works.</Trans>
</Link>
</Text>
Expand Down Expand Up @@ -114,7 +114,7 @@ const JoinUsSection: React.FC = () => {
<Trans id="Join Today">Join Today</Trans>
</Button>
</RouterLink>
{/* <Button
<Button
bg="#60C4CA"
color="white"
borderColor="white"
Expand All @@ -125,10 +125,10 @@ const JoinUsSection: React.FC = () => {
border="2px solid #fff"
_hover={{ bg: '#24a9df' }}
as="a"
href="https://trisa.dev"
href="https://trisa.io/members/"
target="_blank">
<Trans id="View Member List">View Member List</Trans>
</Button> */}
</Button>
</Stack>
</Stack>
<Flex flex={1} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export default function VaspVerification() {
<chakra.dd mt={2}>
<UnorderedList color={'#1F4CED'}>
<ListItem fontSize="1rem">
<Link isExternal href="https://trisa.dev/reference/faq/index.html">
<Link isExternal href="https://trisa.io/getting-started-with-trisa/">
<Trans id="Learn How TRISA Works">Learn How TRISA Works</Trans>
</Link>
</ListItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@ exports[`<MembershipGuide /> should match snapshot 1`] = `
>
<a
class="chakra-link emotion-6"
href="https://trisa.dev/reference/faq/index.html"
href="https://trisa.io"
rel="noopener"
target="_blank"
>
Expand Down Expand Up @@ -1284,7 +1284,9 @@ exports[`<MembershipGuide /> should match snapshot 1`] = `

<a
class="chakra-link emotion-61"
href="https://trisa.dev"
href="https://trisa.io"
rel="noopener"
target="_blank"
>
the TRISA architecture
</a>
Expand All @@ -1299,6 +1301,8 @@ exports[`<MembershipGuide /> should match snapshot 1`] = `
<a
class="chakra-link emotion-61"
href="https://rotational.io"
rel="noopener"
target="_blank"
>

Rotational Labs
Expand All @@ -1308,7 +1312,9 @@ exports[`<MembershipGuide /> should match snapshot 1`] = `

<a
class="chakra-link emotion-61"
href="https://trisa.dev"
href="https://trisa.io"
rel="noopener"
target="_blank"
>
TRISA
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ exports[`<Line /> should match snapshot 1`] = `
>
<a
class="chakra-link emotion-54"
href="https://trisa.dev/reference/faq/index.html"
href="https://trisa.io/getting-started-with-trisa/"
rel="noopener"
target="_blank"
>
Expand Down
4 changes: 2 additions & 2 deletions web/gds-user-ui/src/locales/de/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2555,8 +2555,8 @@ msgid "Verified VASPs"
msgstr ""

#: src/components/Section/JoinUs.tsx:130
#~ msgid "View Member List"
#~ msgstr ""
msgid "View Member List"
msgstr ""

#: src/components/CertificateManagement/CertificateValidityAlert.tsx:40
#: src/components/CertificateManagement/CertificateValidityAlert.tsx:67
Expand Down
4 changes: 2 additions & 2 deletions web/gds-user-ui/src/locales/en-dh/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2555,8 +2555,8 @@ msgid "Verified VASPs"
msgstr "---"

#: src/components/Section/JoinUs.tsx:130
#~ msgid "View Member List"
#~ msgstr ""
msgid "View Member List"
msgstr ""

#: src/components/CertificateManagement/CertificateValidityAlert.tsx:40
#: src/components/CertificateManagement/CertificateValidityAlert.tsx:67
Expand Down
4 changes: 2 additions & 2 deletions web/gds-user-ui/src/locales/en/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2598,8 +2598,8 @@ msgid "Verified VASPs"
msgstr "Verified VASPs"

#: src/components/Section/JoinUs.tsx:130
#~ msgid "View Member List"
#~ msgstr "View Member List"
msgid "View Member List"
msgstr "View Member List"

#: src/components/CertificateManagement/CertificateValidityAlert.tsx:40
#: src/components/CertificateManagement/CertificateValidityAlert.tsx:67
Expand Down
4 changes: 2 additions & 2 deletions web/gds-user-ui/src/locales/es/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2555,8 +2555,8 @@ msgid "Verified VASPs"
msgstr ""

#: src/components/Section/JoinUs.tsx:130
#~ msgid "View Member List"
#~ msgstr ""
msgid "View Member List"
msgstr ""

#: src/components/CertificateManagement/CertificateValidityAlert.tsx:40
#: src/components/CertificateManagement/CertificateValidityAlert.tsx:67
Expand Down
4 changes: 2 additions & 2 deletions web/gds-user-ui/src/locales/fr/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2578,8 +2578,8 @@ msgid "Verified VASPs"
msgstr ""

#: src/components/Section/JoinUs.tsx:130
#~ msgid "View Member List"
#~ msgstr ""
msgid "View Member List"
msgstr ""

#: src/components/CertificateManagement/CertificateValidityAlert.tsx:40
#: src/components/CertificateManagement/CertificateValidityAlert.tsx:67
Expand Down
4 changes: 2 additions & 2 deletions web/gds-user-ui/src/locales/ja/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2555,8 +2555,8 @@ msgid "Verified VASPs"
msgstr ""

#: src/components/Section/JoinUs.tsx:130
#~ msgid "View Member List"
#~ msgstr ""
msgid "View Member List"
msgstr ""

#: src/components/CertificateManagement/CertificateValidityAlert.tsx:40
#: src/components/CertificateManagement/CertificateValidityAlert.tsx:67
Expand Down
4 changes: 2 additions & 2 deletions web/gds-user-ui/src/locales/pt/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2555,8 +2555,8 @@ msgid "Verified VASPs"
msgstr ""

#: src/components/Section/JoinUs.tsx:130
#~ msgid "View Member List"
#~ msgstr ""
msgid "View Member List"
msgstr ""

#: src/components/CertificateManagement/CertificateValidityAlert.tsx:40
#: src/components/CertificateManagement/CertificateValidityAlert.tsx:67
Expand Down
4 changes: 2 additions & 2 deletions web/gds-user-ui/src/locales/zh/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2555,8 +2555,8 @@ msgid "Verified VASPs"
msgstr ""

#: src/components/Section/JoinUs.tsx:130
#~ msgid "View Member List"
#~ msgstr ""
msgid "View Member List"
msgstr ""

#: src/components/CertificateManagement/CertificateValidityAlert.tsx:40
#: src/components/CertificateManagement/CertificateValidityAlert.tsx:67
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ exports[`<VerifyPage /> should match snapshot 1`] = `
>
<a
class="chakra-link emotion-6"
href="https://trisa.dev/reference/faq/index.html"
href="https://trisa.io"
rel="noopener"
target="_blank"
>
Expand Down Expand Up @@ -811,7 +811,9 @@ exports[`<VerifyPage /> should match snapshot 1`] = `

<a
class="chakra-link emotion-31"
href="https://trisa.dev"
href="https://trisa.io"
rel="noopener"
target="_blank"
>
the TRISA architecture
</a>
Expand All @@ -826,6 +828,8 @@ exports[`<VerifyPage /> should match snapshot 1`] = `
<a
class="chakra-link emotion-31"
href="https://rotational.io"
rel="noopener"
target="_blank"
>

Rotational Labs
Expand All @@ -835,7 +839,9 @@ exports[`<VerifyPage /> should match snapshot 1`] = `

<a
class="chakra-link emotion-31"
href="https://trisa.dev"
href="https://trisa.io"
rel="noopener"
target="_blank"
>
TRISA
</a>
Expand Down
Loading