Spaces:
Running
Running
neetnestor
commited on
Commit
•
6ebfe81
1
Parent(s):
2b16403
text: change card message
Browse files- icons/link.svg +8 -0
- index.html +27 -5
- style.css +3 -0
icons/link.svg
ADDED
index.html
CHANGED
@@ -11,12 +11,34 @@
|
|
11 |
<main>
|
12 |
<div class="card">
|
13 |
<p>
|
14 |
-
This is a
|
15 |
-
|
16 |
-
|
17 |
</p>
|
18 |
-
<a
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
</a>
|
21 |
</div>
|
22 |
|
|
|
11 |
<main>
|
12 |
<div class="card">
|
13 |
<p>
|
14 |
+
This is a minimal demo app showcasing how WebLLM enables AI chat
|
15 |
+
directly in your local browser. You might also enjoy exploring
|
16 |
+
<b>WebLLM Chat</b>!
|
17 |
</p>
|
18 |
+
<a
|
19 |
+
href="https://chat.webllm.ai/"
|
20 |
+
rel="nofollow noopener noreferrer"
|
21 |
+
target="_blank"
|
22 |
+
>
|
23 |
+
Try WebLLM Chat
|
24 |
+
<svg
|
25 |
+
xmlns="http://www.w3.org/2000/svg"
|
26 |
+
width="16px"
|
27 |
+
height="16px"
|
28 |
+
viewBox="0 0 24 24"
|
29 |
+
fill="none"
|
30 |
+
>
|
31 |
+
<g id="Interface / External_Link">
|
32 |
+
<path
|
33 |
+
id="Vector"
|
34 |
+
d="M10.0002 5H8.2002C7.08009 5 6.51962 5 6.0918 5.21799C5.71547 5.40973 5.40973 5.71547 5.21799 6.0918C5 6.51962 5 7.08009 5 8.2002V15.8002C5 16.9203 5 17.4801 5.21799 17.9079C5.40973 18.2842 5.71547 18.5905 6.0918 18.7822C6.5192 19 7.07899 19 8.19691 19H15.8031C16.921 19 17.48 19 17.9074 18.7822C18.2837 18.5905 18.5905 18.2839 18.7822 17.9076C19 17.4802 19 16.921 19 15.8031V14M20 9V4M20 4H15M20 4L13 11"
|
35 |
+
stroke="#000000"
|
36 |
+
stroke-width="2"
|
37 |
+
stroke-linecap="round"
|
38 |
+
stroke-linejoin="round"
|
39 |
+
/>
|
40 |
+
</g>
|
41 |
+
</svg>
|
42 |
</a>
|
43 |
</div>
|
44 |
|
style.css
CHANGED
@@ -153,6 +153,9 @@ button:hover:not(:disabled) {
|
|
153 |
white-space: nowrap;
|
154 |
color: black;
|
155 |
text-decoration: none;
|
|
|
|
|
|
|
156 |
}
|
157 |
|
158 |
.card a:hover {
|
|
|
153 |
white-space: nowrap;
|
154 |
color: black;
|
155 |
text-decoration: none;
|
156 |
+
display: flex;
|
157 |
+
gap: 8px;
|
158 |
+
align-items: center;
|
159 |
}
|
160 |
|
161 |
.card a:hover {
|