Change about button (#796)

About button name change and now directs to "Help and About Center" super.so
This commit is contained in:
SirSaltyy 2022-08-25 06:51:33 +09:00 committed by GitHub
parent 52a89d0783
commit 74a0479cbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,7 +93,7 @@ function getMoreNavigation(user?: User | null) {
href: 'https://salemcenter.manifold.markets/', href: 'https://salemcenter.manifold.markets/',
}, },
{ name: 'Discord', href: 'https://discord.gg/eHQBNBqXuh' }, { name: 'Discord', href: 'https://discord.gg/eHQBNBqXuh' },
{ name: 'About', href: 'https://docs.manifold.markets/$how-to' }, { name: 'Help & About', href: 'https://help.manifold.markets/' },
{ {
name: 'Sign out', name: 'Sign out',
href: '#', href: '#',
@ -107,16 +107,16 @@ const signedOutNavigation = [
{ name: 'Home', href: '/', icon: HomeIcon }, { name: 'Home', href: '/', icon: HomeIcon },
{ name: 'Explore', href: '/home', icon: SearchIcon }, { name: 'Explore', href: '/home', icon: SearchIcon },
{ {
name: 'About', name: 'Help & About',
href: 'https://docs.manifold.markets/$how-to', href: 'https://help.manifold.markets/',
icon: BookOpenIcon, icon: BookOpenIcon,
}, },
] ]
const signedOutMobileNavigation = [ const signedOutMobileNavigation = [
{ {
name: 'About', name: 'Help & About',
href: 'https://docs.manifold.markets/$how-to', href: 'https://help.manifold.markets/',
icon: BookOpenIcon, icon: BookOpenIcon,
}, },
{ name: 'Charity', href: '/charity', icon: HeartIcon }, { name: 'Charity', href: '/charity', icon: HeartIcon },
@ -130,8 +130,8 @@ const signedInMobileNavigation = [
? [] ? []
: [{ name: 'Get M$', href: '/add-funds', icon: CashIcon }]), : [{ name: 'Get M$', href: '/add-funds', icon: CashIcon }]),
{ {
name: 'About', name: 'Help & About',
href: 'https://docs.manifold.markets/$how-to', href: 'https://help.manifold.markets/',
icon: BookOpenIcon, icon: BookOpenIcon,
}, },
] ]