@@ -3,6 +3,7 @@ import { LitElement, html } from 'lit'
3
3
import '../../components/wui-icon/index.js'
4
4
import '../../components/wui-text/index.js'
5
5
import '../../layout/wui-flex/index.js'
6
+ import { REOWN_URL } from '../../utils/ConstantsUtil.js'
6
7
import { elementStyles , resetStyles } from '../../utils/ThemeUtil.js'
7
8
import { customElement } from '../../utils/WebComponentsUtil.js'
8
9
import styles from './styles.js'
@@ -14,15 +15,17 @@ export class WuiUxByReown extends LitElement {
14
15
// -- Render -------------------------------------------- //
15
16
public override render ( ) {
16
17
return html `
17
- < wui-flex
18
- justifyContent ="center "
19
- alignItems ="center "
20
- gap ="xs "
21
- .padding =${ [ '0' , '0' , 'l' , '0' ] }
22
- >
23
- < wui-text variant ="small-500 " color ="fg-100 "> UX by </ wui-text >
24
- < wui-icon name ="reown " size ="xxxl " class ="reown-logo "> </ wui-icon >
25
- </ wui-flex >
18
+ < a href =${ REOWN_URL } rel ="noreferrer" target="_blank" style="text-decoration: none;">
19
+ < wui-flex
20
+ justifyContent ="center "
21
+ alignItems ="center "
22
+ gap ="xs "
23
+ .padding =${ [ '0' , '0' , 'l' , '0' ] }
24
+ >
25
+ < wui-text variant ="small-500 " color ="fg-100 "> UX by </ wui-text >
26
+ < wui-icon name ="reown " size ="xxxl " class ="reown-logo "> </ wui-icon >
27
+ </ wui-flex >
28
+ </ a >
26
29
`
27
30
}
28
31
}
0 commit comments