@agent-link/server 0.1.536 → 0.1.537
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/web/dist/icons/agent-pi.svg +5 -0
- package/web/dist/icons/msclaude-animated.svg +43 -0
- package/web/dist/landing.css +1228 -0
- package/web/dist/landing.html +212 -572
- package/web/dist/landing.js +71 -0
- package/web/dist/landing.zh.html +212 -567
- package/web/dist/robots.txt +4 -0
- package/web/dist/site.webmanifest +21 -0
- package/web/dist/sitemap.xml +16 -0
package/package.json
CHANGED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800">
|
|
2
|
+
<title>Pi</title>
|
|
3
|
+
<path fill="currentColor" fill-rule="evenodd" d="M165.29 165.29H517.36V400H400V517.36H282.65V634.72H165.29ZM282.65 282.65V400H400V282.65Z"/>
|
|
4
|
+
<path fill="currentColor" d="M517.36 400H634.72V634.72H517.36Z"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
|
2
|
+
<defs>
|
|
3
|
+
<radialGradient id="face" cx=".34" cy=".28" r=".78">
|
|
4
|
+
<stop offset="0" stop-color="#5b5e68"/>
|
|
5
|
+
<stop offset=".62" stop-color="#3f4655"/>
|
|
6
|
+
<stop offset="1" stop-color="#262b36"/>
|
|
7
|
+
</radialGradient>
|
|
8
|
+
<radialGradient id="glow" cx=".35" cy=".24" r=".68">
|
|
9
|
+
<stop offset="0" stop-color="#fff" stop-opacity=".16"/>
|
|
10
|
+
<stop offset=".55" stop-color="#fff" stop-opacity=".05"/>
|
|
11
|
+
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
|
12
|
+
</radialGradient>
|
|
13
|
+
<linearGradient id="rim" x1="12" y1="10" x2="52" y2="54" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop offset="0" stop-color="#67e8f9"/>
|
|
15
|
+
<stop offset=".58" stop-color="#60a5fa"/>
|
|
16
|
+
<stop offset="1" stop-color="#c084fc"/>
|
|
17
|
+
</linearGradient>
|
|
18
|
+
<filter id="shadow" x="-15%" y="-15%" width="130%" height="130%">
|
|
19
|
+
<feDropShadow dx="0" dy="3" stdDeviation="3" flood-color="#020617" flood-opacity=".32"/>
|
|
20
|
+
</filter>
|
|
21
|
+
</defs>
|
|
22
|
+
<circle cx="32" cy="32" r="29" fill="url(#rim)"/>
|
|
23
|
+
<circle cx="32" cy="32" r="26" fill="url(#face)" filter="url(#shadow)"/>
|
|
24
|
+
<circle cx="32" cy="32" r="26" fill="url(#glow)"/>
|
|
25
|
+
<g fill="none" stroke="#f8fafc" stroke-linecap="round" stroke-linejoin="round" transform="rotate(7 31 31)">
|
|
26
|
+
<path d="M18 25l6 6-6 6" stroke-width="4.8"/>
|
|
27
|
+
<g class="spinner" stroke="#67e8f9" stroke-width="4.2">
|
|
28
|
+
<line x1="42" y1="24" x2="42" y2="38"/>
|
|
29
|
+
<line x1="36" y1="27.5" x2="48" y2="34.5"/>
|
|
30
|
+
<line x1="48" y1="27.5" x2="36" y2="34.5"/>
|
|
31
|
+
</g>
|
|
32
|
+
<line x1="25" y1="44" x2="36" y2="44" stroke-width="4.8"/>
|
|
33
|
+
</g>
|
|
34
|
+
<style>
|
|
35
|
+
.spinner {
|
|
36
|
+
transform-box: fill-box;
|
|
37
|
+
transform-origin: center;
|
|
38
|
+
animation: spin 1.8s linear infinite;
|
|
39
|
+
}
|
|
40
|
+
@keyframes spin { to { transform: rotate(360deg); } }
|
|
41
|
+
@media (prefers-reduced-motion: reduce) { .spinner { animation: none; } }
|
|
42
|
+
</style>
|
|
43
|
+
</svg>
|