Skip to content

Commit 8c90796

Browse files
Merge pull request #1297 from socious-io/TAS-4411/account-center-navigation
TAS-4411/Account-Center-On-Portal
2 parents 500d5cf + c036865 commit 8c90796

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed
Lines changed: 6 additions & 0 deletions
Loading

src/modules/layout/components/NavPortal/index.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ const NavPortal = () => {
2121
logo: '/images/logo/fund-logo.svg',
2222
link: config.fundURL,
2323
},
24+
{
25+
name: 'AC',
26+
logo: '/images/logo/account-center.svg',
27+
link: config.accountCenterURL + 'app',
28+
},
2429
];
2530

2631
return (
@@ -46,7 +51,7 @@ const NavPortal = () => {
4651
onClick={() => (window.location.href = product.link)}
4752
>
4853
<div className="flex items-center justify-center p-2 bg-Gray-light-mode-100 rounded-full">
49-
<img src={product.logo} alt={`Socious ${product.name}`} width={24} height={24} />
54+
<img src={product.logo} alt={`Socious ${product.name}`} width={24} height={26} />
5055
</div>
5156
{product.name}
5257
</div>

0 commit comments

Comments
 (0)