@@ -26,6 +26,7 @@ import { useState } from 'react'
26
26
import { SettingTheme } from '../setting-theme'
27
27
28
28
import { useUserInfo } from '@common/state/user-info'
29
+ import Link from 'next/link'
29
30
30
31
/**
31
32
* NavTopAccountProfile
@@ -110,28 +111,27 @@ function ProfilePanel() {
110
111
< div className = { style . email } > { email } </ div >
111
112
</ div >
112
113
< hr />
113
- < button className = { `menu ${ style . menuTop } ` } type = "button" >
114
+ < Link href = "/" className = { `button menu ${ style . menuTop } ` } type = "button" >
114
115
< HomeIcon /> { t ( 'profile:home' , 'Home' ) }
115
- </ button >
116
- < button className = "menu" type = "button" >
116
+ </ Link >
117
+ < Link href = "/saves" className = "button menu" type = "button" >
117
118
< SaveIcon /> { t ( 'profile:saves' , 'Saves' ) }
118
- </ button >
119
- < button className = "menu" type = "button" >
119
+ </ Link >
120
+ < Link href = "/collections" className = "button menu" type = "button" >
120
121
< CollectionsIcon /> { t ( 'profile:collections' , 'Collections' ) }
121
- </ button >
122
+ </ Link >
123
+ < Link href = "/settings" className = "button menu" type = "button" >
124
+ < SettingsIcon /> { t ( 'profile:settings' , 'Settings' ) }
125
+ </ Link >
122
126
< button className = "menu" type = "button" >
123
127
< AddCircledIcon /> { t ( 'profile:add' , 'Add' ) }
124
128
</ button >
125
- < button className = "menu" type = "button" >
126
- < SettingsIcon /> { t ( 'profile:settings' , 'Settings' ) }
127
- </ button >
128
129
< hr />
129
130
< div className = { style . themeSelect } >
130
131
< SettingTheme buttonClass = { style . themeButton } />
131
132
</ div >
132
-
133
133
< hr />
134
- < button className = "menu" type = "button" onClick = { logout } >
134
+ < button className = "button menu" type = "button" onClick = { logout } >
135
135
< LockIcon /> { t ( 'profile:log-out' , 'Log Out' ) }
136
136
</ button >
137
137
</ div >
0 commit comments