Skip to content

Commit 205484f

Browse files
committed
v0.5.6
1 parent c7d7423 commit 205484f

File tree

4 files changed

+30
-8
lines changed

4 files changed

+30
-8
lines changed

index.html

+8-5
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,13 @@
6868
}
6969
}
7070
</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"/>
7173
<script
7274
id="MathJax-script"
7375
async
7476
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"
7577
></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-
/>
8178
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>
8279
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-python.min.js"></script>
8380
</head>
@@ -129,6 +126,12 @@
129126
<span class="slider round"></span>
130127
</label>
131128
</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>
132135
</div>
133136
</div>
134137
</div>

scripts/script.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ marked.setOptions({
1717

1818
// console.log(window.navigator.platform)
1919

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+
2122
const chatBox = document.getElementById("chat-box");
2223
const chatInput = document.getElementById("chat-input");
2324
var query = false

styles/light.css

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ a {
4848
color: #e1e1e1 !important ;
4949
}
5050

51+
.socials a {
52+
color: #1e1e1e !important;
53+
}
5154

5255
.message-card {
5356
background: rgba(0, 0, 0, 0.2) !important ;

styles/styles.css

+17-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
--lBlack: #1e1e1e;
1616
}
1717

18-
19-
2018
::-webkit-scrollbar {
2119
width: 5px;
2220
height: 5px;
@@ -150,6 +148,7 @@ canvas {
150148
display: flex;
151149
justify-content: space-between;
152150
position: fixed ;
151+
gap: 1em;
153152
z-index: 6;
154153
top: 0;
155154
}
@@ -298,6 +297,22 @@ input:checked + .slider:before {
298297
transform: translateX(1rem);
299298
}
300299

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+
301316
.chat-container {
302317
width: 100%;
303318
height: 100%;

0 commit comments

Comments
 (0)