Spaces:
Running
Running
Add 2 files
Browse files- index.html +24 -17
- prompts.txt +2 -1
index.html
CHANGED
|
@@ -89,6 +89,8 @@
|
|
| 89 |
height: 60vh;
|
| 90 |
overflow-y: auto;
|
| 91 |
scrollbar-width: none;
|
|
|
|
|
|
|
| 92 |
}
|
| 93 |
|
| 94 |
.terminal-body::-webkit-scrollbar {
|
|
@@ -118,14 +120,14 @@
|
|
| 118 |
|
| 119 |
.glitch::before {
|
| 120 |
left: 2px;
|
| 121 |
-
text-shadow: -2px 0 #
|
| 122 |
clip: rect(44px, 450px, 56px, 0);
|
| 123 |
animation: glitch-anim 5s infinite linear alternate-reverse;
|
| 124 |
}
|
| 125 |
|
| 126 |
.glitch::after {
|
| 127 |
left: -2px;
|
| 128 |
-
text-shadow: -2px 0 #
|
| 129 |
clip: rect(44px, 450px, 56px, 0);
|
| 130 |
animation: glitch-anim2 5s infinite linear alternate-reverse;
|
| 131 |
}
|
|
@@ -159,15 +161,18 @@
|
|
| 159 |
}
|
| 160 |
|
| 161 |
.command {
|
| 162 |
-
color: #
|
|
|
|
| 163 |
}
|
| 164 |
|
| 165 |
.file {
|
| 166 |
-
color: #
|
|
|
|
| 167 |
}
|
| 168 |
|
| 169 |
.year {
|
| 170 |
-
color: #
|
|
|
|
| 171 |
}
|
| 172 |
|
| 173 |
.value {
|
|
@@ -230,21 +235,21 @@
|
|
| 230 |
{text: "TMT_HISTORY.TXT", class: "file glitch", delay: 1000, dataText: "TMT_HISTORY.TXT"},
|
| 231 |
{text: "INITIALIZING TMT CORE PROTOCOLS...", class: "command", delay: 500},
|
| 232 |
{text: "", delay: 1000},
|
| 233 |
-
{text: "
|
| 234 |
{text: "", delay: 500},
|
| 235 |
-
{text: "
|
| 236 |
{text: "", delay: 500},
|
| 237 |
-
{text: "
|
| 238 |
{text: "", delay: 1000},
|
| 239 |
-
{text: "
|
| 240 |
-
{text: ">
|
| 241 |
-
{text: ">
|
| 242 |
-
{text: ">
|
| 243 |
{text: "", delay: 1000},
|
| 244 |
-
{text: "
|
| 245 |
{text: "To dominate performance marketing through algorithmic precision, infrastructure hacking, and relentless optimization. We exist to push the boundaries of what's possible in traffic acquisition.", delay: 30},
|
| 246 |
{text: "", delay: 1000},
|
| 247 |
-
{text: "
|
| 248 |
];
|
| 249 |
|
| 250 |
const terminalOutput = document.getElementById('terminalOutput');
|
|
@@ -264,7 +269,9 @@
|
|
| 264 |
|
| 265 |
const lineElement = document.createElement('div');
|
| 266 |
lineElement.className = line.class || '';
|
| 267 |
-
lineElement.
|
|
|
|
|
|
|
| 268 |
|
| 269 |
// Add typing effect for non-empty lines
|
| 270 |
if (line.text) {
|
|
@@ -273,8 +280,6 @@
|
|
| 273 |
lineElement.style.whiteSpace = 'nowrap';
|
| 274 |
lineElement.style.width = '0';
|
| 275 |
|
| 276 |
-
terminalOutput.appendChild(lineElement);
|
| 277 |
-
|
| 278 |
const textWidth = lineElement.scrollWidth;
|
| 279 |
let currentWidth = 0;
|
| 280 |
const typingSpeed = 5; // characters per 50ms
|
|
@@ -285,6 +290,8 @@
|
|
| 285 |
|
| 286 |
if (currentWidth >= textWidth) {
|
| 287 |
clearInterval(typingInterval);
|
|
|
|
|
|
|
| 288 |
terminalOutput.appendChild(document.createElement('br'));
|
| 289 |
i++;
|
| 290 |
setTimeout(typeNextLine, line.delay);
|
|
|
|
| 89 |
height: 60vh;
|
| 90 |
overflow-y: auto;
|
| 91 |
scrollbar-width: none;
|
| 92 |
+
white-space: pre-wrap;
|
| 93 |
+
word-wrap: break-word;
|
| 94 |
}
|
| 95 |
|
| 96 |
.terminal-body::-webkit-scrollbar {
|
|
|
|
| 120 |
|
| 121 |
.glitch::before {
|
| 122 |
left: 2px;
|
| 123 |
+
text-shadow: -2px 0 #00FF00;
|
| 124 |
clip: rect(44px, 450px, 56px, 0);
|
| 125 |
animation: glitch-anim 5s infinite linear alternate-reverse;
|
| 126 |
}
|
| 127 |
|
| 128 |
.glitch::after {
|
| 129 |
left: -2px;
|
| 130 |
+
text-shadow: -2px 0 #00FF00;
|
| 131 |
clip: rect(44px, 450px, 56px, 0);
|
| 132 |
animation: glitch-anim2 5s infinite linear alternate-reverse;
|
| 133 |
}
|
|
|
|
| 161 |
}
|
| 162 |
|
| 163 |
.command {
|
| 164 |
+
color: #00FF00;
|
| 165 |
+
font-weight: bold;
|
| 166 |
}
|
| 167 |
|
| 168 |
.file {
|
| 169 |
+
color: #00FF00;
|
| 170 |
+
font-weight: bold;
|
| 171 |
}
|
| 172 |
|
| 173 |
.year {
|
| 174 |
+
color: #00FF00;
|
| 175 |
+
font-weight: bold;
|
| 176 |
}
|
| 177 |
|
| 178 |
.value {
|
|
|
|
| 235 |
{text: "TMT_HISTORY.TXT", class: "file glitch", delay: 1000, dataText: "TMT_HISTORY.TXT"},
|
| 236 |
{text: "INITIALIZING TMT CORE PROTOCOLS...", class: "command", delay: 500},
|
| 237 |
{text: "", delay: 1000},
|
| 238 |
+
{text: "YEAR 2018: First traces of TMT detected in the digital ecosystem. A small group of performance hackers begins rewriting traffic acquisition algorithms.", delay: 50},
|
| 239 |
{text: "", delay: 500},
|
| 240 |
+
{text: "YEAR 2020: The collective evolves into a decentralized network. First major breakthrough - cracking the Facebook ad algorithm during pandemic market shifts.", delay: 50},
|
| 241 |
{text: "", delay: 500},
|
| 242 |
+
{text: "YEAR 2022: Full operational capacity achieved. TMT now controls traffic flows across 15+ ecosystems. $1M/month in managed spend becomes standard.", delay: 50},
|
| 243 |
{text: "", delay: 1000},
|
| 244 |
+
{text: "CORE VALUES:", class: "command", delay: 500},
|
| 245 |
+
{text: "> PERFORMANCE IS TRUTH: Data over opinions. We follow the numbers wherever they lead.", delay: 30},
|
| 246 |
+
{text: "> ADAPT OR DIE: Market conditions change hourly. Our systems evolve in real-time.", delay: 30},
|
| 247 |
+
{text: "> CONTROL THE FLOW: Traffic is the lifeblood of digital. We don't just buy it - we engineer it.", delay: 30},
|
| 248 |
{text: "", delay: 1000},
|
| 249 |
+
{text: "MISSION STATEMENT:", class: "command", delay: 500},
|
| 250 |
{text: "To dominate performance marketing through algorithmic precision, infrastructure hacking, and relentless optimization. We exist to push the boundaries of what's possible in traffic acquisition.", delay: 30},
|
| 251 |
{text: "", delay: 1000},
|
| 252 |
+
{text: "END OF FILE", class: "command", delay: 1000}
|
| 253 |
];
|
| 254 |
|
| 255 |
const terminalOutput = document.getElementById('terminalOutput');
|
|
|
|
| 269 |
|
| 270 |
const lineElement = document.createElement('div');
|
| 271 |
lineElement.className = line.class || '';
|
| 272 |
+
lineElement.textContent = line.text;
|
| 273 |
+
|
| 274 |
+
terminalOutput.appendChild(lineElement);
|
| 275 |
|
| 276 |
// Add typing effect for non-empty lines
|
| 277 |
if (line.text) {
|
|
|
|
| 280 |
lineElement.style.whiteSpace = 'nowrap';
|
| 281 |
lineElement.style.width = '0';
|
| 282 |
|
|
|
|
|
|
|
| 283 |
const textWidth = lineElement.scrollWidth;
|
| 284 |
let currentWidth = 0;
|
| 285 |
const typingSpeed = 5; // characters per 50ms
|
|
|
|
| 290 |
|
| 291 |
if (currentWidth >= textWidth) {
|
| 292 |
clearInterval(typingInterval);
|
| 293 |
+
lineElement.style.whiteSpace = 'pre-wrap';
|
| 294 |
+
lineElement.style.width = 'auto';
|
| 295 |
terminalOutput.appendChild(document.createElement('br'));
|
| 296 |
i++;
|
| 297 |
setTimeout(typeNextLine, line.delay);
|
prompts.txt
CHANGED
|
@@ -1,3 +1,4 @@
|
|
| 1 |
✅ PROMPT: TMT — Traffic Monsters Team в стиле “The Matrix” Create a one-page cinematic landing page for Traffic Monsters Team (TMT), styled in the aesthetic of The Matrix (1999). • Tone: dark, encrypted, controlled, cybernetic. • No mentions of students, learning, or education. • Target: partner networks, advertisers, media buying professionals, competitors. ⸻ 🧱 SITE STRUCTURE 1. Hero Section — Operation: Control the Flow • Animated flowing green code as background (vertical streams, random symbol glitches, old CRT screen flicker). • Central Title (appearing letter-by-letter): TMT — TRAFFIC MONSTERS TEAM • Subtitle (typed terminal effect): Decoding the chaos. Mastering the flow. • Two Buttons (glowing frame): • ▶️ Enter the Network (Telegram) • 🎞️ Watch Completed Missions (Cases) 2. The Origin Code — Story of TMT • Title: THE ORIGIN CODE • Subtitle: "Before control... there was chaos." • Story Text (cinematic myth style): Once, the digital realms were wild — endless, uncontrolled, unpredictable. In 2022, a group of architects emerged. They did not seek to follow the flow — they sought to command it. Thus, the Traffic Monsters Team was born. Forged in the heart of the Data Wars, molded by broken funnels and lost offers, they built their own Matrix — a system where traffic obeys and strategies evolve. For three years, TMT has not survived the system. They have rewritten its rules. 3. Capabilities Block — Mastering the Systems • Grid layout of capabilities: • Offer Mapping • Multi-channel Traffic Execution • Keitaro Tracking & API Control • Creative Manufacturing (UGC, Deepfakes) • Funnel and App Monetization • Each service visualized with terminal-style icons. 4. Metrics Block — Data Sovereignty • Animated counters with terminal typing effect: • $5M+ Traffic Processed • 70+ Media Operators • 200+ Offers Deployed • 15+ Traffic Sources Controlled 5. Case Studies — Completed Missions • Horizontal carousel of case studies: • Mission Name • Traffic Source • Offer Category • Metrics (CTR, ROI, CR) • Each case framed as a “declassified mission report”. 6. The Architect — Founder Timur • Cinematic portrait of Timur with Matrix-style green glow. • Short bio: Timur: Architect of Controlled Chaos. Creator of TMT. Reprogrammer of the Traffic Universe. • Links: • Instagram • YouTube Interview 7. Partners and Verticals — Allies Network • Black-and-white distorted logos (optional static effect). • Mentioned Verticals: • Gambling • Nutra • Betting • Finance • SaaS 8. Final Choice — Red Pill or Blue Pill (CTA) • Dark background with dripping code. • Text: “You are now at the crossroads. Choose wisely.” • Two Buttons (pill style): • 🔴 Red Pill → Enter the Network (Telegram) • 🔵 Blue Pill → Stay in the Illusion (Return to Top) • Hover Effects: • Red Pill vibrates lightly. • Blue Pill fades away. 9. Footer — System Root Signature • Minimal footer: • Telegram, Instagram, YouTube icons (green glow on hover). • Text: © 2025 TMT — Reprogramming the Digital World. • Scroll-to-top button: "Wake Up" ⸻ 🎨 VISUAL DETAILS • Background: deep black (#000000) • Main Color: neon green (#00FF00) • Secondary Color: silver metallic (#B0B0B0) • Fonts: • Headlines: Monument Extended • Body: Inter • Numbers and code: JetBrains Mono • Effects: • Slow-moving matrix code • Terminal typing animation • Flickering text reveals • Glitch effects on buttons and transitions
|
| 2 |
Все круто - только куда делся блок с операторами(командой) - добавь его - тоже в стиле матрицы! И еще кнопки снизу - красная и синяя - сделай похожими на таблетки - как в матрице!
|
| 3 |
-
Сделай историю вот вот с таким текстом! и чтобы был эффект написания истории! TMT_HISTORY.TXT INITIALIZING TMT CORE PROTOCOLS... YEAR 2018: First traces of TMT detected in the digital ecosystem. A small group of performance hackers begins rewriting traffic acquisition algorithms. YEAR 2020: The collective evolves into a decentralized network. First major breakthrough - cracking the Facebook ad algorithm during pandemic market shifts. YEAR 2022: Full operational capacity achieved. TMT now controls traffic flows across 15+ ecosystems. $1M/month in managed spend becomes standard. CORE VALUES: > PERFORMANCE IS TRUTH: Data over opinions. We follow the numbers wherever they lead. > ADAPT OR DIE: Market conditions change hourly. Our systems evolve in real-time. > CONTROL THE FLOW: Traffic is the lifeblood of digital. We don't just buy it - we engineer it. MISSION STATEMENT: To dominate performance marketing through algorithmic precision, infrastructure hacking, and relentless optimization. We exist to push the boundaries of what's possible in traffic acquisition. END OF FILE
|
|
|
|
|
|
| 1 |
✅ PROMPT: TMT — Traffic Monsters Team в стиле “The Matrix” Create a one-page cinematic landing page for Traffic Monsters Team (TMT), styled in the aesthetic of The Matrix (1999). • Tone: dark, encrypted, controlled, cybernetic. • No mentions of students, learning, or education. • Target: partner networks, advertisers, media buying professionals, competitors. ⸻ 🧱 SITE STRUCTURE 1. Hero Section — Operation: Control the Flow • Animated flowing green code as background (vertical streams, random symbol glitches, old CRT screen flicker). • Central Title (appearing letter-by-letter): TMT — TRAFFIC MONSTERS TEAM • Subtitle (typed terminal effect): Decoding the chaos. Mastering the flow. • Two Buttons (glowing frame): • ▶️ Enter the Network (Telegram) • 🎞️ Watch Completed Missions (Cases) 2. The Origin Code — Story of TMT • Title: THE ORIGIN CODE • Subtitle: "Before control... there was chaos." • Story Text (cinematic myth style): Once, the digital realms were wild — endless, uncontrolled, unpredictable. In 2022, a group of architects emerged. They did not seek to follow the flow — they sought to command it. Thus, the Traffic Monsters Team was born. Forged in the heart of the Data Wars, molded by broken funnels and lost offers, they built their own Matrix — a system where traffic obeys and strategies evolve. For three years, TMT has not survived the system. They have rewritten its rules. 3. Capabilities Block — Mastering the Systems • Grid layout of capabilities: • Offer Mapping • Multi-channel Traffic Execution • Keitaro Tracking & API Control • Creative Manufacturing (UGC, Deepfakes) • Funnel and App Monetization • Each service visualized with terminal-style icons. 4. Metrics Block — Data Sovereignty • Animated counters with terminal typing effect: • $5M+ Traffic Processed • 70+ Media Operators • 200+ Offers Deployed • 15+ Traffic Sources Controlled 5. Case Studies — Completed Missions • Horizontal carousel of case studies: • Mission Name • Traffic Source • Offer Category • Metrics (CTR, ROI, CR) • Each case framed as a “declassified mission report”. 6. The Architect — Founder Timur • Cinematic portrait of Timur with Matrix-style green glow. • Short bio: Timur: Architect of Controlled Chaos. Creator of TMT. Reprogrammer of the Traffic Universe. • Links: • Instagram • YouTube Interview 7. Partners and Verticals — Allies Network • Black-and-white distorted logos (optional static effect). • Mentioned Verticals: • Gambling • Nutra • Betting • Finance • SaaS 8. Final Choice — Red Pill or Blue Pill (CTA) • Dark background with dripping code. • Text: “You are now at the crossroads. Choose wisely.” • Two Buttons (pill style): • 🔴 Red Pill → Enter the Network (Telegram) • 🔵 Blue Pill → Stay in the Illusion (Return to Top) • Hover Effects: • Red Pill vibrates lightly. • Blue Pill fades away. 9. Footer — System Root Signature • Minimal footer: • Telegram, Instagram, YouTube icons (green glow on hover). • Text: © 2025 TMT — Reprogramming the Digital World. • Scroll-to-top button: "Wake Up" ⸻ 🎨 VISUAL DETAILS • Background: deep black (#000000) • Main Color: neon green (#00FF00) • Secondary Color: silver metallic (#B0B0B0) • Fonts: • Headlines: Monument Extended • Body: Inter • Numbers and code: JetBrains Mono • Effects: • Slow-moving matrix code • Terminal typing animation • Flickering text reveals • Glitch effects on buttons and transitions
|
| 2 |
Все круто - только куда делся блок с операторами(командой) - добавь его - тоже в стиле матрицы! И еще кнопки снизу - красная и синяя - сделай похожими на таблетки - как в матрице!
|
| 3 |
+
Сделай историю вот вот с таким текстом! и чтобы был эффект написания истории! TMT_HISTORY.TXT INITIALIZING TMT CORE PROTOCOLS... YEAR 2018: First traces of TMT detected in the digital ecosystem. A small group of performance hackers begins rewriting traffic acquisition algorithms. YEAR 2020: The collective evolves into a decentralized network. First major breakthrough - cracking the Facebook ad algorithm during pandemic market shifts. YEAR 2022: Full operational capacity achieved. TMT now controls traffic flows across 15+ ecosystems. $1M/month in managed spend becomes standard. CORE VALUES: > PERFORMANCE IS TRUTH: Data over opinions. We follow the numbers wherever they lead. > ADAPT OR DIE: Market conditions change hourly. Our systems evolve in real-time. > CONTROL THE FLOW: Traffic is the lifeblood of digital. We don't just buy it - we engineer it. MISSION STATEMENT: To dominate performance marketing through algorithmic precision, infrastructure hacking, and relentless optimization. We exist to push the boundaries of what's possible in traffic acquisition. END OF FILE
|
| 4 |
+
Почему нету переноса текста на новую строку? Текст уходит за рамки блока! Поправь это! И еще сделай все в одном зеленом цвете!
|