File tree 3 files changed +17
-4
lines changed
3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,15 @@ const navbarItems = [
20
20
href : '/members' ,
21
21
} ,
22
22
{
23
- title : 'Our Chatroom' ,
24
- value : 'our- chatroom' ,
23
+ title : 'Chatroom' ,
24
+ value : 'chatroom' ,
25
25
href : '/chat' ,
26
26
} ,
27
+ {
28
+ title : 'Report Bug' ,
29
+ value : 'report-bug' ,
30
+ href : 'https://github.com/coderplex-org/coderplex-org/issues/new' ,
31
+ } ,
27
32
]
28
33
29
34
export default function AppNavBar ( ) {
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ import {
41
41
} from '@/components'
42
42
import type { GoalResponse } from 'src/pages/[username]'
43
43
import { scrollToContentWithId } from 'src/utils'
44
- import { IconBrandDiscord } from 'tabler-icons'
44
+ import { IconBrandDiscord , IconBug } from 'tabler-icons'
45
45
import toast , { Toaster } from 'react-hot-toast'
46
46
import ListModal from './modal/ListModal'
47
47
@@ -453,6 +453,15 @@ function HomePageSideNavBar() {
453
453
< IconBrandDiscord className = "text-gray-400 group-hover:text-gray-500 flex-shrink-0 -ml-1 mr-3 h-6 w-6" />
454
454
< span className = "truncate" > Our Chatroom</ span >
455
455
</ A >
456
+
457
+ < A
458
+ href = "https://github.com/coderplex-org/coderplex-org/issues/new"
459
+ className = "text-gray-600 hover:bg-gray-50 group flex items-center px-3 py-2 text-sm font-medium rounded-md"
460
+ aria-current = "false"
461
+ >
462
+ < IconBug className = "text-gray-400 group-hover:text-gray-500 flex-shrink-0 -ml-1 mr-3 h-6 w-6" />
463
+ < span className = "truncate" > Report a Bug</ span >
464
+ </ A >
456
465
</ >
457
466
) }
458
467
{ ! session && (
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ function Repl({ replLink }: { replLink: string }) {
13
13
src = { `https://repl.it/${ replLink } ?lite=true` }
14
14
scrolling = "no"
15
15
frameBorder = "no"
16
- allowTransparency = { true }
17
16
allowFullScreen = { true }
18
17
sandbox = "allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"
19
18
/>
You can’t perform that action at this time.
0 commit comments