File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import {
1010 DisclosurePanel ,
1111 DisclosureTrigger ,
1212} from "./intentui/disclosure-group" ;
13+ import { Link } from "./intentui/link" ;
1314import {
1415 Modal ,
1516 ModalBody ,
@@ -19,6 +20,7 @@ import {
1920 ModalHeader ,
2021 ModalTitle ,
2122} from "./intentui/modal" ;
23+ import { Note } from "./intentui/note" ;
2224
2325export default function Changelog ( ) {
2426 const content = useIntlayer ( "common" ) ;
@@ -46,6 +48,7 @@ export default function Changelog() {
4648 < ModalTitle > { content . changelog . value } </ ModalTitle >
4749 </ ModalHeader >
4850 < ModalBody className = "flex flex-col gap-4" >
51+ < ChangelogNotice />
4952 < DisclosureGroup defaultExpandedKeys = "1" >
5053 { changelog . map ( ( entry , index ) => (
5154 < Disclosure key = { entry . date } id = { String ( index + 1 ) } >
@@ -70,3 +73,17 @@ export default function Changelog() {
7073 </ Modal >
7174 ) ;
7275}
76+
77+ function ChangelogNotice ( ) {
78+ return (
79+ < Note
80+ intent = "default"
81+ className = "bg-(--color-indigo-500)/15 px-3 py-2 text-(--color-indigo-700) dark:text-(--color-indigo-300)"
82+ >
83+ Join our support Discord server for bug reporting or suggestions.{ " " }
84+ < Link className = "underline" href = "https://discord.gg/SWEm6RbJD3" target = "_blank" >
85+ discord.gg/SWEm6RbJD3
86+ </ Link >
87+ </ Note >
88+ ) ;
89+ }
You can’t perform that action at this time.
0 commit comments