File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export default function Sidebar({ show, onClose }: SidebarProps) {
14
14
15
15
return (
16
16
< div
17
- className = { `overflow-y-auto z-50 fixed inset-0 bg-sinfo-primary p -10 mb-safe flex flex-col gap-6 transition-transform duration-300 ${
17
+ className = { `overflow-y-auto z-50 fixed inset-0 bg-sinfo-primary px -10 py-8 mb-safe flex flex-col gap-6 transition-transform duration-300 ${
18
18
show ? "translate-x-0" : "-translate-x-full"
19
19
} `}
20
20
>
@@ -30,6 +30,9 @@ export default function Sidebar({ show, onClose }: SidebarProps) {
30
30
< Link href = "/profile" onClick = { onClose } >
31
31
Profile
32
32
</ Link >
33
+ < Link href = "/profile/connections" onClick = { onClose } >
34
+ Connections
35
+ </ Link >
33
36
</ div >
34
37
< div className = "flex flex-col gap-2" >
35
38
< Link href = "/schedule?kind=keynote" onClick = { onClose } >
@@ -75,10 +78,6 @@ export default function Sidebar({ show, onClose }: SidebarProps) {
75
78
Report a Bug
76
79
< ExternalLink size = { 16 } />
77
80
</ Link >
78
- { /* todo: the pages below dont exist */ }
79
- < Link href = "#" onClick = { onClose } >
80
- Privacy Policy
81
- </ Link >
82
81
< Link
83
82
href = "https://sinfo.org/code-of-conduct"
84
83
target = "_blank"
@@ -91,8 +90,8 @@ export default function Sidebar({ show, onClose }: SidebarProps) {
91
90
className = "flex items-center gap-x-2 text-red-500"
92
91
onClick = { handleLogout }
93
92
>
94
- < LogOut size = { 16 } />
95
93
Logout
94
+ < LogOut size = { 16 } />
96
95
</ button >
97
96
</ div >
98
97
</ div >
You can’t perform that action at this time.
0 commit comments