From f66dd6d5b04c3f7461a8e196f4a359fddcb6f19c Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Tue, 14 Nov 2023 11:28:54 +0300 Subject: [PATCH] fix: links --- src/components/Authenticator.tsx | 2 +- src/components/SidebarLayout.tsx | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/Authenticator.tsx b/src/components/Authenticator.tsx index 186abdf..b3011f7 100644 --- a/src/components/Authenticator.tsx +++ b/src/components/Authenticator.tsx @@ -30,7 +30,7 @@ export function AuthenticationForm (): JSX.Element {

- By registering with web3.storage, you agree to the web3.storage Terms of Service. + By registering with web3.storage, you agree to the web3.storage Terms of Service.

) diff --git a/src/components/SidebarLayout.tsx b/src/components/SidebarLayout.tsx index 34cb872..1e8488d 100644 --- a/src/components/SidebarLayout.tsx +++ b/src/components/SidebarLayout.tsx @@ -14,9 +14,9 @@ import { usePathname, useRouter } from 'next/navigation' import { H2 } from './Text' const navLinks = [ - { name: 'Terms', href: '/terms' }, - { name: 'Docs', href: '/docs' }, - { name: 'Support', href: 'https://github.com/web3-storage/w3ui/issues' }, + { name: 'Terms', href: 'https://web3.storage/docs/terms' }, + { name: 'Docs', href: 'https://web3.storage/docs' }, + { name: 'Support', href: 'mailto:support@web3.storage' }, ] interface SidebarComponentProps { @@ -44,7 +44,7 @@ function Sidebar ({ sidebar =
}: SidebarComponentProps): JSX.Element
{navLinks.map((link, i) => ( - {link.name} + {link.name} ))}