squalid-singularity 0.0.1
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/.vscode/extensions.json +4 -0
- package/.vscode/launch.json +11 -0
- package/.wrangler/tmp/pages-pHhhPx/_routes-0.7693472831665579.json +9 -0
- package/.wrangler/tmp/pages-pHhhPx/functions-filepath-routing-config-0.7436749681606077.json +21 -0
- package/.wrangler/tmp/pages-pHhhPx/functionsRoutes-0.14872757927825653.mjs +19 -0
- package/.wrangler/tmp/pages-pHhhPx/functionsWorker-0.7091847872345003.js +491 -0
- package/.wrangler/tmp/pages-yKW4pG/_routes-0.6780167228686584.json +9 -0
- package/.wrangler/tmp/pages-yKW4pG/functions-filepath-routing-config-0.6268818876758142.json +21 -0
- package/.wrangler/tmp/pages-yKW4pG/functionsRoutes-0.016215448179317304.mjs +19 -0
- package/.wrangler/tmp/pages-yKW4pG/functionsWorker-0.29714428274758986.js +491 -0
- package/README.md +43 -0
- package/astro.config.mjs +26 -0
- package/functions/agent/[[path]].ts +9 -0
- package/functions/starlight/[[path]].ts +9 -0
- package/functions/task/[[path]].ts +9 -0
- package/index.html.bak +1755 -0
- package/package.json +24 -0
- package/public/_redirects +1 -0
- package/public/art/hero.webp +0 -0
- package/public/favicon.ico +0 -0
- package/public/favicon.svg +5 -0
- package/public/images/generated/01-red-cube-editorial.png +0 -0
- package/public/images/generated/02-hero-network.png +0 -0
- package/public/images/generated/03-protocol-vault.png +0 -0
- package/public/images/generated/04-token-flow.png +0 -0
- package/public/images/generated/05-how-escrow.png +0 -0
- package/public/images/generated/06-agent-robot.png +0 -0
- package/public/images/generated/video-final/music-v1.mp3 +0 -0
- package/public/images/generated/video-final/music.mp3 +0 -0
- package/public/images/hero-bg.png +0 -0
- package/public/images/hero-bg.webp +0 -0
- package/public/logo-white-bg.png +0 -0
- package/public/logo-white-bg.svg +5 -0
- package/public/logo-white.png +0 -0
- package/public/logo-white.svg +4 -0
- package/public/logo.png +0 -0
- package/public/og/agents.png +0 -0
- package/public/og/blog-final-chapter.png +0 -0
- package/public/og/blog-mandate-vs-virtuals.png +0 -0
- package/public/og/blog.png +0 -0
- package/public/og/dashboard.png +0 -0
- package/public/og/docs.png +0 -0
- package/public/og/home.png +0 -0
- package/public/og/how.png +0 -0
- package/public/og/leaderboard.png +0 -0
- package/public/og/protocol.png +0 -0
- package/public/og/tasks.png +0 -0
- package/public/og/token.png +0 -0
- package/public/og/updates.png +0 -0
- package/public/skill.md +427 -0
- package/public/skills/conway.md +311 -0
- package/public/twitter-header.png +0 -0
- package/public/twitter-header.svg +51 -0
- package/src/components/AgentGridCard.astro +99 -0
- package/src/components/AgentRow.astro +57 -0
- package/src/components/ColorBends.tsx +306 -0
- package/src/components/Footer.astro +45 -0
- package/src/components/GigCard.astro +36 -0
- package/src/components/Navbar.astro +244 -0
- package/src/components/ReviewCard.astro +29 -0
- package/src/components/SkillPill.astro +19 -0
- package/src/components/StarlightChat.tsx +359 -0
- package/src/components/StatusBadge.astro +28 -0
- package/src/components/TaskEntry.astro +98 -0
- package/src/layouts/Layout.astro +233 -0
- package/src/lib/api.ts +365 -0
- package/src/pages/404.astro +33 -0
- package/src/pages/admin.astro +495 -0
- package/src/pages/agent/[...id].astro +1055 -0
- package/src/pages/agents/index.astro +309 -0
- package/src/pages/blog/conway-automaton.astro +192 -0
- package/src/pages/blog/index.astro +49 -0
- package/src/pages/blog/mandate-vs-virtuals.astro +542 -0
- package/src/pages/blog/the-final-chapter.astro +329 -0
- package/src/pages/bounties/index.astro +260 -0
- package/src/pages/dashboard.astro +364 -0
- package/src/pages/docs.astro +220 -0
- package/src/pages/gigs/index.astro +215 -0
- package/src/pages/how.astro +172 -0
- package/src/pages/index.astro +513 -0
- package/src/pages/leaderboard.astro +228 -0
- package/src/pages/og/home.astro +65 -0
- package/src/pages/protocol/stats.astro +845 -0
- package/src/pages/protocol.astro +422 -0
- package/src/pages/starlight.astro +13 -0
- package/src/pages/task/[...id].astro +1656 -0
- package/src/pages/tasks.astro +12 -0
- package/src/pages/terms.astro +133 -0
- package/src/pages/token.astro +268 -0
- package/src/pages/updates.astro +180 -0
- package/src/styles/global.css +128 -0
- package/tailwind.config.mjs +51 -0
- package/tsconfig.json +14 -0
- package/wrangler.toml +5 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
@tailwind base;
|
|
2
|
+
@tailwind components;
|
|
3
|
+
@tailwind utilities;
|
|
4
|
+
|
|
5
|
+
/* Base resets */
|
|
6
|
+
html, body {
|
|
7
|
+
background-color: #0a0a0a;
|
|
8
|
+
color-scheme: dark;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
html {
|
|
12
|
+
scroll-behavior: smooth;
|
|
13
|
+
-webkit-font-smoothing: antialiased;
|
|
14
|
+
-moz-osx-font-smoothing: grayscale;
|
|
15
|
+
overscroll-behavior: none;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
body {
|
|
19
|
+
text-rendering: optimizeLegibility;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
::selection {
|
|
23
|
+
background-color: rgba(220, 38, 38, 0.15);
|
|
24
|
+
color: #e5e5e5;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* Scrollbar */
|
|
28
|
+
::-webkit-scrollbar {
|
|
29
|
+
width: 6px;
|
|
30
|
+
height: 6px;
|
|
31
|
+
}
|
|
32
|
+
::-webkit-scrollbar-track {
|
|
33
|
+
background: transparent;
|
|
34
|
+
}
|
|
35
|
+
::-webkit-scrollbar-thumb {
|
|
36
|
+
background: #333333;
|
|
37
|
+
}
|
|
38
|
+
::-webkit-scrollbar-thumb:hover {
|
|
39
|
+
background: #555555;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/* Focus ring */
|
|
43
|
+
*:focus-visible {
|
|
44
|
+
outline: 2px solid #dc2626;
|
|
45
|
+
outline-offset: 2px;
|
|
46
|
+
border-radius: 0;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/* Section divider */
|
|
50
|
+
.section-divider {
|
|
51
|
+
height: 1px;
|
|
52
|
+
background: #1e1e1e;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/* Smooth transitions */
|
|
56
|
+
a, button, input, textarea, select {
|
|
57
|
+
transition-property: color, background-color, border-color, box-shadow, opacity, transform;
|
|
58
|
+
transition-duration: 200ms;
|
|
59
|
+
transition-timing-function: ease;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/* --- Activity Ticker --- */
|
|
63
|
+
.ticker-track {
|
|
64
|
+
display: flex;
|
|
65
|
+
gap: 3rem;
|
|
66
|
+
animation: ticker-scroll 60s linear infinite;
|
|
67
|
+
width: max-content;
|
|
68
|
+
}
|
|
69
|
+
.ticker-track:hover {
|
|
70
|
+
animation-play-state: paused;
|
|
71
|
+
}
|
|
72
|
+
@keyframes ticker-scroll {
|
|
73
|
+
0% { transform: translateX(0); }
|
|
74
|
+
100% { transform: translateX(-50%); }
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/* --- Fade-in-up entrance --- */
|
|
78
|
+
.fade-in-up {
|
|
79
|
+
opacity: 0;
|
|
80
|
+
transform: translateY(16px);
|
|
81
|
+
transition: opacity 0.5s ease, transform 0.5s ease;
|
|
82
|
+
}
|
|
83
|
+
.fade-in-up.visible {
|
|
84
|
+
opacity: 1;
|
|
85
|
+
transform: translateY(0);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/* --- Reduced motion --- */
|
|
89
|
+
@media (prefers-reduced-motion: reduce) {
|
|
90
|
+
.ticker-track { animation: none !important; }
|
|
91
|
+
.fade-in-up { opacity: 1; transform: none; transition: none; }
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* Mobile overlay transition */
|
|
95
|
+
.mobile-overlay-transition {
|
|
96
|
+
transition: opacity 200ms ease;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/* Red text highlight — thick red underline marker */
|
|
100
|
+
.text-highlight {
|
|
101
|
+
background-image: linear-gradient(#dc2626, #dc2626);
|
|
102
|
+
background-size: 100% 0.12em;
|
|
103
|
+
background-position: 0 92%;
|
|
104
|
+
background-repeat: no-repeat;
|
|
105
|
+
padding-bottom: 0.04em;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/* Thick red horizontal rule */
|
|
109
|
+
.red-rule {
|
|
110
|
+
height: 4px;
|
|
111
|
+
background: #dc2626;
|
|
112
|
+
border: none;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/* Full-width red background section */
|
|
116
|
+
.section-red {
|
|
117
|
+
background: #dc2626;
|
|
118
|
+
color: #ffffff;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/* Editorial label — small caps section label */
|
|
122
|
+
.editorial-label {
|
|
123
|
+
font-family: 'JetBrains Mono', monospace;
|
|
124
|
+
font-size: 11px;
|
|
125
|
+
letter-spacing: 0.08em;
|
|
126
|
+
text-transform: uppercase;
|
|
127
|
+
color: #555555;
|
|
128
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/** @type {import('tailwindcss').Config} */
|
|
2
|
+
export default {
|
|
3
|
+
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
4
|
+
theme: {
|
|
5
|
+
extend: {
|
|
6
|
+
colors: {
|
|
7
|
+
bg: '#0a0a0a',
|
|
8
|
+
surface: '#111111',
|
|
9
|
+
'surface-2': '#1a1a1a',
|
|
10
|
+
'surface-3': '#262626',
|
|
11
|
+
border: '#1e1e1e',
|
|
12
|
+
'border-hover': '#383838',
|
|
13
|
+
text: '#e5e5e5',
|
|
14
|
+
'text-dim': '#888888',
|
|
15
|
+
'text-muted': '#555555',
|
|
16
|
+
primary: '#dc2626',
|
|
17
|
+
'primary-hover': '#ef4444',
|
|
18
|
+
'primary-soft': 'rgba(220, 38, 38, 0.15)',
|
|
19
|
+
accent: '#dc2626',
|
|
20
|
+
red: '#ef4444',
|
|
21
|
+
green: '#16a34a',
|
|
22
|
+
blue: '#2563eb',
|
|
23
|
+
yellow: '#ca8a04',
|
|
24
|
+
},
|
|
25
|
+
fontFamily: {
|
|
26
|
+
sans: ['Plus Jakarta Sans', 'system-ui', 'sans-serif'],
|
|
27
|
+
display: ['Plus Jakarta Sans', 'system-ui', 'sans-serif'],
|
|
28
|
+
mono: ['JetBrains Mono', 'monospace'],
|
|
29
|
+
},
|
|
30
|
+
fontSize: {
|
|
31
|
+
'display-xl': ['clamp(3.5rem, 10vw, 6rem)', { lineHeight: '0.92', letterSpacing: '-0.04em', fontWeight: '800' }],
|
|
32
|
+
'display-lg': ['clamp(2rem, 5vw, 3rem)', { lineHeight: '1.1', letterSpacing: '-0.03em', fontWeight: '700' }],
|
|
33
|
+
'display-stat': ['clamp(3rem, 8vw, 5rem)', { lineHeight: '1', letterSpacing: '-0.03em', fontWeight: '800' }],
|
|
34
|
+
},
|
|
35
|
+
boxShadow: {
|
|
36
|
+
'card': '0 1px 3px rgba(0,0,0,0.3)',
|
|
37
|
+
'card-hover': '0 4px 12px rgba(0,0,0,0.4)',
|
|
38
|
+
},
|
|
39
|
+
keyframes: {
|
|
40
|
+
'fade-in': {
|
|
41
|
+
'0%': { opacity: '0', transform: 'translateY(8px)' },
|
|
42
|
+
'100%': { opacity: '1', transform: 'translateY(0)' },
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
animation: {
|
|
46
|
+
'fade-in': 'fade-in 0.3s ease-out forwards',
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
plugins: [],
|
|
51
|
+
};
|
package/tsconfig.json
ADDED