-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
309 lines (267 loc) · 17.2 KB
/
Copy pathindex.html
File metadata and controls
309 lines (267 loc) · 17.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PolyNode - Cinematic Confessions</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/global.css">
<link rel="icon" type="image/png" href="./assets/logo.png">
<meta name="title" content="PolyNode | Cinematic Anonymous Confessions Platform">
<meta name="description"
content="The first privacy-focused 'Confessions' platform that transforms anonymous messages into high-end Instagram stories using a serverless rendering engine.">
<meta name="keywords"
content="PolyNode, Anonymous Confessions, Instagram Stories, Privacy, Social Media, Java, Serverless, Automation, Rendering Engine, PolyNode.link">
<link rel="canonical" href="https://polynode.link/">
<meta property="og:type" content="website">
<meta property="og:url" content="https://polynode.link/">
<meta property="og:title" content="PolyNode | Cinematic Anonymous Confessions Platform">
<meta property="og:description"
content="Transform your secrets into cinematic stories. PolyNode offers zero-trace anonymous submissions with automated high-end visual rendering.">
<meta property="og:image" content="https://polynode.link/assets/og-image.jpeg">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://polynode.link/">
<meta property="twitter:title" content="PolyNode | Cinematic Anonymous Confessions Platform">
<meta property="twitter:description"
content="Transform your secrets into cinematic stories. PolyNode offers zero-trace anonymous submissions with automated high-end visual rendering.">
<meta property="twitter:image" content="https://polynode.link/assets/og-image.jpeg">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "PolyNode",
"alternateName": "PolyNode.link",
"url": "https://polynode.link",
"description": "The first privacy-focused 'Confessions' platform that transforms anonymous messages into high-end Instagram stories using a serverless rendering engine.",
"author": {
"@type": "Person",
"name": "serqux",
"alternateName": "a8kj7sea",
"url": "https://github.com/PolyNode-Link"
}
}
</script>
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: { inter: ['Inter', 'sans-serif'] },
colors: {
poly: {
bg: '#05050A',
accent: '#00D2FF',
accent2: '#3A7BD5',
muted: '#94A3B8'
}
}
}
}
}
</script>
</head>
<body class="antialiased">
<div id="app" class="relative min-h-screen flex flex-col items-center justify-between p-6">
<div class="fixed inset-0 overflow-hidden pointer-events-none z-0">
<div v-for="item in floatingItems" :key="item.id" class="floating-container" :style="{
left: item.left + '%',
'--rot': item.rot + 'deg',
'--scale': item.scale,
'--duration': item.duration + 's'
}">
<svg v-if="item.type === 'light'" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1080 1920"
width="1080" height="1920" class="w-full h-full drop-shadow-2xl">
<defs>
<filter :id="'box-shadow-batik-' + item.id" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceAlpha" stdDeviation="20" result="blur" />
<feOffset in="blur" dx="0" dy="20" result="offsetBlur" />
<feComponentTransfer in="offsetBlur" result="shadowAlpha">
<feFuncA type="linear" slope="0.1" />
</feComponentTransfer>
<feMerge>
<feMergeNode in="shadowAlpha" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<linearGradient :id="'primary-gradient-' + item.id" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#a5b4fc" />
<stop offset="50%" stop-color="#c4b5fd" />
<stop offset="100%" stop-color="#f9a8d4" />
</linearGradient>
<pattern :id="'header-pattern-' + item.id" width="100" height="100"
patternUnits="userSpaceOnUse">
<path
d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM85 52c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z"
fill="#ffffff" fill-opacity="0.15" fill-rule="evenodd" />
</pattern>
</defs>
<rect width="1080" height="1920" fill="#ffffff" />
<g id="header" opacity="0.95">
<rect width="1080" height="730" :fill="'url(#primary-gradient-' + item.id + ')'" />
<rect width="1080" height="730" :fill="'url(#header-pattern-' + item.id + ')'" />
</g>
<text x="540" y="320" font-family="sans-serif" font-size="115" font-weight="800" fill="#ffffff"
text-anchor="middle" letter-spacing="-3">
{{ item.header }}
</text>
<g id="pill" transform="translate(540, 420)">
<rect x="-175" y="-38" width="350" height="76" rx="38" fill="#ffffff" fill-opacity="0.3" />
<text x="0" y="5" font-family="monospace" font-size="34" font-weight="700" fill="#ffffff"
text-anchor="middle" dominant-baseline="middle">
{{ item.pill }}
</text>
</g>
<path d="M 0 720 A 90 90 0 0 1 90 630 L 990 630 A 90 90 0 0 1 1080 720 L 1080 1920 L 0 1920 Z"
fill="#ffffff" />
<g id="message-box" transform="translate(65, 825)"
:filter="'url(#box-shadow-batik-' + item.id + ')'">
<rect width="950" height="750" rx="60" fill="#a77fc0" fill-opacity="0.22" />
<foreignObject x="50" y="50" width="850" height="650">
<div xmlns="http://www.w3.org/1999/xhtml"
style="height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; font-family: sans-serif; font-size: 64px; font-weight: 700; color: #1e293b; line-height: 1.3;">
{{ item.message }}
</div>
</foreignObject>
</g>
</svg>
<svg v-else xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1080 1920" width="1080" height="1920"
class="w-full h-full drop-shadow-2xl">
<defs>
<filter :id="'dark-box-shadow-' + item.id" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceAlpha" stdDeviation="30" result="blur" />
<feOffset in="blur" dx="0" dy="30" result="offsetBlur" />
<feComponentTransfer in="offsetBlur" result="shadowAlpha">
<feFuncA type="linear" slope="0.4" />
</feComponentTransfer>
<feMerge>
<feMergeNode in="shadowAlpha" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<filter :id="'dark-text-shadow-' + item.id" x="-10%" y="-10%" width="120%" height="120%">
<feGaussianBlur in="SourceAlpha" stdDeviation="5" result="blur" />
<feOffset in="blur" dx="0" dy="5" result="offsetBlur" />
<feComponentTransfer in="offsetBlur" result="shadowAlpha">
<feFuncA type="linear" slope="0.3" />
</feComponentTransfer>
<feMerge>
<feMergeNode in="shadowAlpha" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<linearGradient :id="'primary-gradient-' + item.id" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#6366f1" />
<stop offset="50%" stop-color="#a855f7" />
<stop offset="100%" stop-color="#ec4899" />
</linearGradient>
<pattern :id="'header-pattern-' + item.id" width="100" height="100"
patternUnits="userSpaceOnUse">
<path
d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM85 52c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z"
fill="#ffffff" fill-opacity="0.15" fill-rule="evenodd" />
</pattern>
</defs>
<rect width="1080" height="1920" fill="#1e293b" />
<g id="header">
<rect width="1080" height="730" :fill="'url(#primary-gradient-' + item.id + ')'" />
<rect width="1080" height="730" :fill="'url(#header-pattern-' + item.id + ')'" />
</g>
<text x="540" y="320" font-family="sans-serif" font-size="115" font-weight="800" fill="#ffffff"
text-anchor="middle" letter-spacing="-3" :filter="'url(#dark-text-shadow-' + item.id + ')'">
{{ item.header }}
</text>
<g id="pill" transform="translate(540, 420)">
<rect x="-175" y="-38" width="350" height="76" rx="38" fill="#000000" fill-opacity="0.25" />
<text x="0" y="5" font-family="monospace" font-size="34" font-weight="700" fill="#ffffff"
text-anchor="middle" dominant-baseline="middle">
{{ item.pill }}
</text>
</g>
<path d="M 0 720 A 90 90 0 0 1 90 630 L 990 630 A 90 90 0 0 1 1080 720 L 1080 1920 L 0 1920 Z"
fill="#1e293b" />
<g id="message-box" transform="translate(65, 825)"
:filter="'url(#dark-box-shadow-' + item.id + ')'">
<rect width="950" height="750" rx="60" fill="#0f172a" stroke="#ffffff" stroke-opacity="0.03"
stroke-width="2" />
<foreignObject x="50" y="50" width="850" height="650">
<div xmlns="http://www.w3.org/1999/xhtml"
style="height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; font-family: sans-serif; font-size: 64px; font-weight: 700; color: #f8fafc; line-height: 1.3;">
{{ item.message }}
</div>
</foreignObject>
</g>
</svg>
</div>
</div>
<header class="w-full max-w-5xl flex justify-between items-center z-10 py-4">
<div class="flex items-center gap-2">
<img src="./assets/logo.png" alt="PolyNode Logo" class="w-8 h-8">
<span class="font-bold text-xl tracking-tighter">PolyNode.link</span>
</div>
<div class="hidden md:flex gap-8 text-sm font-medium text-poly-muted">
<a href="#" class="hover:text-white transition-colors">Documentation</a>
<a href="#" class="hover:text-white transition-colors">Privacy</a>
<a href="#" class="hover:text-white transition-colors">Open Source</a>
</div>
</header>
<main class="z-10 flex flex-col items-center text-center max-w-3xl mt-20">
<div
class="inline-flex items-center gap-2 px-3 py-1 rounded-full glass border border-white/10 text-[10px] uppercase tracking-widest font-bold text-poly-accent mb-6">
<span class="relative flex h-2 w-2">
<span class="animate-ping absolute inline-flex h-full w-full rounded-full bg-poly-accent opacity="
75"></span>
<span class="relative inline-flex rounded-full h-2 w-2 bg-poly-accent"></span>
</span>
Automated Pipeline Live
</div>
<h1 class="text-5xl md:text-7xl font-extrabold tracking-tighter mb-6 leading-tight">
Your secrets, <br />
<span
class="text-transparent bg-clip-text bg-gradient-to-r from-poly-accent to-poly-accent2">Cinematically
Delivered.</span>
</h1>
<p class="text-lg md:text-xl text-poly-muted mb-10 max-w-2xl leading-relaxed font-medium">
The first privacy-focused "Confessions" platform that transforms anonymous messages into high-end
Instagram stories using a serverless rendering engine.
</p>
<div class="flex flex-col sm:flex-row gap-4 w-full justify-center">
<button class="btn-premium px-10 py-4 rounded-2xl font-bold text-poly-bg text-lg">
Try PolyNode Now
</button>
<a href="https://github.com/PolyNode-Link" target="_blank"
class="glass px-10 py-4 rounded-2xl font-bold text-white text-lg border border-white/10 hover:bg-white/5 transition-all inline-flex items-center justify-center">
View GitHub
</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mt-24">
<div class="glass p-6 rounded-3xl text-left border border-white/5">
<div class="w-10 h-10 rounded-xl bg-white/5 flex items-center justify-center mb-4">🔒</div>
<h3 class="font-bold mb-2">Zero-Trace</h3>
<p class="text-sm text-poly-muted leading-relaxed">Encrypted submissions. No databases, no tracking.
Only art remains.</p>
</div>
<div class="glass p-6 rounded-3xl text-left border border-white/5">
<div class="w-10 h-10 rounded-xl bg-white/5 flex items-center justify-center mb-4">🎬</div>
<h3 class="font-bold mb-2">Satori Engine</h3>
<p class="text-sm text-poly-muted leading-relaxed">Java-based orchestrator renders
professional-grade visuals in milliseconds.</p>
</div>
<div class="glass p-6 rounded-3xl text-left border border-white/5">
<div class="w-10 h-10 rounded-xl bg-white/5 flex items-center justify-center mb-4">🤖</div>
<h3 class="font-bold mb-2">Auto-Publish</h3>
<p class="text-sm text-poly-muted leading-relaxed">Automated pipeline from submission to social
media story distribution.</p>
</div>
</div>
</main>
<footer class="z-10 w-full flex justify-center py-10 opacity-40 hover:opacity-100 transition-opacity">
<p class="text-xs font-medium tracking-widest uppercase">Built for Performance • by serqux <b>(aka
`a8kj7sea`)</b> • 2026</p>
</footer>
</div>
<script src="./js/script.js"></script>
</body>
</html>