File tree 4 files changed +30
-8
lines changed
4 files changed +30
-8
lines changed Original file line number Diff line number Diff line change 68
68
}
69
69
}
70
70
</ style >
71
+ < link href ="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css " rel ="stylesheet "/>
72
+ < link href ="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css " rel ="stylesheet "/>
71
73
< script
72
74
id ="MathJax-script "
73
75
async
74
76
src ="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js "
75
77
> </ script >
76
-
77
- < link
78
- href ="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css "
79
- rel ="stylesheet "
80
- />
81
78
< script src ="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js "> </ script >
82
79
< script src ="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-python.min.js "> </ script >
83
80
</ head >
129
126
< span class ="slider round "> </ span >
130
127
</ label >
131
128
</ div >
129
+
130
+ < div class ="socials ">
131
+ < a href ="https://github.com/ZAR0X/duck-gui " title ="GitHub "> < i class ="fab fa-github "> </ i > </ a >
132
+ < a href ="https://t.me/execal " title ="Telegram "> < i class ="fab fa-telegram "> </ i > </ a >
133
+ < a href ="mailto:qzarox@gmail.com " title ="Email "> < i class ="fas fa-envelope "> </ i > </ a >
134
+ </ div >
132
135
</ div >
133
136
</ div >
134
137
</ div >
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ marked.setOptions({
17
17
18
18
// console.log(window.navigator.platform)
19
19
20
- const apiUrl = "https://duckgpt.iriszarox.workers.dev/chat/" ;
20
+ const apiUrl = "https://duckgpt.iriszarox.workers.dev/chat/" ; // Add your own url, get one from here https://github.com/vauth/duckgpt
21
+
21
22
const chatBox = document . getElementById ( "chat-box" ) ;
22
23
const chatInput = document . getElementById ( "chat-input" ) ;
23
24
var query = false
Original file line number Diff line number Diff line change 48
48
color : # e1e1e1 !important ;
49
49
}
50
50
51
+ .socials a {
52
+ color : # 1e1e1e !important ;
53
+ }
51
54
52
55
.message-card {
53
56
background : rgba (0 , 0 , 0 , 0.2 ) !important ;
Original file line number Diff line number Diff line change 15
15
--lBlack : # 1e1e1e ;
16
16
}
17
17
18
-
19
-
20
18
::-webkit-scrollbar {
21
19
width : 5px ;
22
20
height : 5px ;
@@ -150,6 +148,7 @@ canvas {
150
148
display : flex;
151
149
justify-content : space-between;
152
150
position : fixed ;
151
+ gap : 1em ;
153
152
z-index : 6 ;
154
153
top : 0 ;
155
154
}
@@ -298,6 +297,22 @@ input:checked + .slider:before {
298
297
transform : translateX (1rem );
299
298
}
300
299
300
+
301
+ .socials {
302
+ display : flex;
303
+ justify-content : center;
304
+ gap : 1em ;
305
+ }
306
+ .socials a {
307
+ color : var (--lWhite );
308
+ font-size : 24px ;
309
+ text-decoration : none;
310
+ transition : color 0.3s ;
311
+ }
312
+ .socials a : hover {
313
+ color : # 9BC6FF ;
314
+ }
315
+
301
316
.chat-container {
302
317
width : 100% ;
303
318
height : 100% ;
You can’t perform that action at this time.
0 commit comments