timoon811 commited on
Commit
67bfb02
·
verified ·
1 Parent(s): 1ce1f4d

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +215 -1
  2. prompts.txt +2 -1
index.html CHANGED
@@ -242,12 +242,123 @@
242
  background: linear-gradient(90deg, transparent, var(--matrix-green), transparent);
243
  margin: 100px 0;
244
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  </style>
246
  </head>
247
  <body>
248
  <!-- Matrix Background -->
249
  <div class="matrix-bg" id="matrixBg"></div>
250
 
 
 
 
251
  <!-- Custom Cursor -->
252
  <div class="custom-cursor" id="cursor"></div>
253
 
@@ -258,7 +369,7 @@
258
 
259
  <!-- Hero Section -->
260
  <section class="min-h-screen flex items-center justify-center relative overflow-hidden crt-effect">
261
- <div class="container mx-auto px-6 py-20 text-center">
262
  <h1 class="text-6xl md:text-8xl font-bold mb-6 glow-text">
263
  <span class="text-white">TMT</span>
264
  <span class="text-[#00FF41]">—</span>
@@ -280,6 +391,81 @@
280
  </div>
281
  </section>
282
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  <!-- Capabilities Section -->
284
  <section class="py-20 relative overflow-hidden">
285
  <div class="container mx-auto px-6">
@@ -708,6 +894,33 @@
708
  }
709
  }
710
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
711
  // Custom Cursor
712
  function initCustomCursor() {
713
  const cursor = document.getElementById('cursor');
@@ -840,6 +1053,7 @@
840
  // Initialize everything when DOM is loaded
841
  document.addEventListener('DOMContentLoaded', () => {
842
  createMatrixEffect();
 
843
  initCustomCursor();
844
  animateCounters();
845
  initScrollTop();
 
242
  background: linear-gradient(90deg, transparent, var(--matrix-green), transparent);
243
  margin: 100px 0;
244
  }
245
+
246
+ /* New Matrix Code Rain Styles */
247
+ .matrix-rain {
248
+ position: absolute;
249
+ top: 0;
250
+ left: 0;
251
+ width: 100%;
252
+ height: 100%;
253
+ overflow: hidden;
254
+ z-index: -1;
255
+ }
256
+
257
+ .matrix-column {
258
+ position: relative;
259
+ float: left;
260
+ width: 2ch;
261
+ height: 100%;
262
+ font-size: 16px;
263
+ writing-mode: vertical-rl;
264
+ text-orientation: mixed;
265
+ }
266
+
267
+ .matrix-digit {
268
+ color: var(--matrix-green);
269
+ text-shadow: 0 0 8px var(--matrix-green);
270
+ opacity: 0;
271
+ animation: matrix-fall linear infinite;
272
+ }
273
+
274
+ @keyframes matrix-fall {
275
+ 0% {
276
+ transform: translateY(-100px);
277
+ opacity: 1;
278
+ }
279
+ 100% {
280
+ transform: translateY(100vh);
281
+ opacity: 0;
282
+ }
283
+ }
284
+
285
+ /* History Section Styles */
286
+ .history-terminal {
287
+ background-color: rgba(0, 0, 0, 0.7);
288
+ border: 1px solid var(--matrix-green);
289
+ padding: 30px;
290
+ position: relative;
291
+ font-family: 'JetBrains Mono', monospace;
292
+ }
293
+
294
+ .history-terminal::before {
295
+ content: '';
296
+ position: absolute;
297
+ top: 0;
298
+ left: 0;
299
+ right: 0;
300
+ bottom: 0;
301
+ background:
302
+ linear-gradient(rgba(0, 255, 65, 0.1) 1px, transparent 1px),
303
+ linear-gradient(90deg, rgba(0, 255, 65, 0.1) 1px, transparent 1px);
304
+ background-size: 20px 20px;
305
+ pointer-events: none;
306
+ }
307
+
308
+ .terminal-header {
309
+ color: var(--matrix-green);
310
+ border-bottom: 1px solid var(--matrix-green);
311
+ padding-bottom: 10px;
312
+ margin-bottom: 20px;
313
+ font-size: 1.2rem;
314
+ }
315
+
316
+ .terminal-line {
317
+ margin-bottom: 15px;
318
+ position: relative;
319
+ padding-left: 30px;
320
+ }
321
+
322
+ .terminal-line::before {
323
+ content: '>';
324
+ position: absolute;
325
+ left: 10px;
326
+ color: var(--matrix-green);
327
+ }
328
+
329
+ .terminal-text {
330
+ color: white;
331
+ line-height: 1.6;
332
+ }
333
+
334
+ .terminal-text span {
335
+ color: var(--matrix-green);
336
+ font-weight: bold;
337
+ }
338
+
339
+ .terminal-cursor {
340
+ display: inline-block;
341
+ width: 10px;
342
+ height: 20px;
343
+ background-color: var(--matrix-green);
344
+ animation: blink 1s infinite;
345
+ vertical-align: middle;
346
+ margin-left: 5px;
347
+ }
348
+
349
+ @keyframes blink {
350
+ 0%, 100% { opacity: 1; }
351
+ 50% { opacity: 0; }
352
+ }
353
  </style>
354
  </head>
355
  <body>
356
  <!-- Matrix Background -->
357
  <div class="matrix-bg" id="matrixBg"></div>
358
 
359
+ <!-- Matrix Code Rain -->
360
+ <div class="matrix-rain" id="matrixRain"></div>
361
+
362
  <!-- Custom Cursor -->
363
  <div class="custom-cursor" id="cursor"></div>
364
 
 
369
 
370
  <!-- Hero Section -->
371
  <section class="min-h-screen flex items-center justify-center relative overflow-hidden crt-effect">
372
+ <div class="container mx-auto px-6 py-20 text-center relative z-10">
373
  <h1 class="text-6xl md:text-8xl font-bold mb-6 glow-text">
374
  <span class="text-white">TMT</span>
375
  <span class="text-[#00FF41]">—</span>
 
391
  </div>
392
  </section>
393
 
394
+ <!-- History Section -->
395
+ <section class="py-20 relative overflow-hidden">
396
+ <div class="container mx-auto px-6">
397
+ <div class="history-terminal max-w-4xl mx-auto">
398
+ <div class="terminal-header">TMT_HISTORY.TXT</div>
399
+
400
+ <div class="terminal-line">
401
+ <div class="terminal-text">
402
+ <span>INITIALIZING TMT CORE PROTOCOLS...</span>
403
+ </div>
404
+ </div>
405
+
406
+ <div class="terminal-line">
407
+ <div class="terminal-text">
408
+ <span>YEAR 2018:</span> First traces of TMT detected in the digital ecosystem. A small group of performance hackers begins rewriting traffic acquisition algorithms.
409
+ </div>
410
+ </div>
411
+
412
+ <div class="terminal-line">
413
+ <div class="terminal-text">
414
+ <span>YEAR 2020:</span> The collective evolves into a decentralized network. First major breakthrough - cracking the Facebook ad algorithm during pandemic market shifts.
415
+ </div>
416
+ </div>
417
+
418
+ <div class="terminal-line">
419
+ <div class="terminal-text">
420
+ <span>YEAR 2022:</span> Full operational capacity achieved. TMT now controls traffic flows across 15+ ecosystems. $1M/month in managed spend becomes standard.
421
+ </div>
422
+ </div>
423
+
424
+ <div class="terminal-line">
425
+ <div class="terminal-text">
426
+ <span>CORE VALUES:</span>
427
+ </div>
428
+ </div>
429
+
430
+ <div class="terminal-line">
431
+ <div class="terminal-text">
432
+ <span>></span> <span>PERFORMANCE IS TRUTH:</span> Data over opinions. We follow the numbers wherever they lead.
433
+ </div>
434
+ </div>
435
+
436
+ <div class="terminal-line">
437
+ <div class="terminal-text">
438
+ <span>></span> <span>ADAPT OR DIE:</span> Market conditions change hourly. Our systems evolve in real-time.
439
+ </div>
440
+ </div>
441
+
442
+ <div class="terminal-line">
443
+ <div class="terminal-text">
444
+ <span>></span> <span>CONTROL THE FLOW:</span> Traffic is the lifeblood of digital. We don't just buy it - we engineer it.
445
+ </div>
446
+ </div>
447
+
448
+ <div class="terminal-line">
449
+ <div class="terminal-text">
450
+ <span>MISSION STATEMENT:</span>
451
+ </div>
452
+ </div>
453
+
454
+ <div class="terminal-line">
455
+ <div class="terminal-text">
456
+ 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.
457
+ </div>
458
+ </div>
459
+
460
+ <div class="terminal-line">
461
+ <div class="terminal-text">
462
+ <span>END OF FILE</span><span class="terminal-cursor"></span>
463
+ </div>
464
+ </div>
465
+ </div>
466
+ </div>
467
+ </section>
468
+
469
  <!-- Capabilities Section -->
470
  <section class="py-20 relative overflow-hidden">
471
  <div class="container mx-auto px-6">
 
894
  }
895
  }
896
 
897
+ // Matrix Code Rain Effect
898
+ function createMatrixRain() {
899
+ const matrixRain = document.getElementById('matrixRain');
900
+ const columns = Math.floor(window.innerWidth / 20); // Adjust based on character width
901
+
902
+ for (let i = 0; i < columns; i++) {
903
+ const column = document.createElement('div');
904
+ column.className = 'matrix-column';
905
+ column.style.left = `${i * 20}px`;
906
+ column.style.animationDelay = `${Math.random() * 2}s`;
907
+ column.style.animationDuration = `${2 + Math.random() * 5}s`;
908
+
909
+ // Create random digits in column
910
+ const digitCount = 20 + Math.floor(Math.random() * 20);
911
+ for (let j = 0; j < digitCount; j++) {
912
+ const digit = document.createElement('div');
913
+ digit.className = 'matrix-digit';
914
+ digit.textContent = Math.floor(Math.random() * 10);
915
+ digit.style.animationDelay = `${Math.random() * 5}s`;
916
+ digit.style.animationDuration = `${3 + Math.random() * 7}s`;
917
+ column.appendChild(digit);
918
+ }
919
+
920
+ matrixRain.appendChild(column);
921
+ }
922
+ }
923
+
924
  // Custom Cursor
925
  function initCustomCursor() {
926
  const cursor = document.getElementById('cursor');
 
1053
  // Initialize everything when DOM is loaded
1054
  document.addEventListener('DOMContentLoaded', () => {
1055
  createMatrixEffect();
1056
+ createMatrixRain();
1057
  initCustomCursor();
1058
  animateCounters();
1059
  initScrollTop();
prompts.txt CHANGED
@@ -1 +1,2 @@
1
- Create a one-page landing page for TMT (Traffic Monsters Team) — a global performance marketing team styled in the aesthetic of The Matrix. ❗️No mention of students, courses, or learning. ❗️Purely a high-level media buying and digital arbitrage business. Audience: • Partner networks (affiliate programs) • Direct advertisers (brands) • High-level traffic specialists and analysts • Market competitors (must create “wow effect”) ⸻ 🎨 Визуальная концепция: • Matrix style: • Deep black background (#000000) • Flowing green code streams (#00FF00) • Subtle metallic gradients and glass panels • Sharp, clean brutalism with cybernetic precision • Fonts: • Headlines: Monument Extended, Space Grotesk, or Matrix Code font (stylized) • Text: Inter, PP Neue Montreal, or JetBrains Mono • Effects: • Green neon outlines • Code rain overlays • Scroll-triggered terminal flickers • Kinetic glowing cursor • Magnetic slow-hover buttons ⸻ 🧱 Структура лендинга: ⸻ 🟢 1. Hero Section (The Entrance) • Dynamic background: slow moving Matrix code (black/green digital rain) • Main headline: TMT — TRAFFIC MONSTERS TEAM • Subline: We decode markets. We rewire performance. • CTAs (only buttons): • Enter the Network (Telegram) • View Case Studies • Kinetic mouse interactions (glowing green trail) ⸻ ⚙️ 2. Capabilities Block (What We Control) • Simple grid of services: • Traffic Scaling (FB, TikTok, Google, Push, Native) • Strategic Offer Mapping • Infrastructure Hacking (Keitaro, API networks) • Creative Labs (Video, UGC, Deepfake modules) • Direct Advertiser Integrations • Green grid overlays, minimalism, animated data nodes on hover. ⸻ 📈 3. TMT Numbers (Data Facts) • Metric counters: • 5M+ USD in managed traffic • 70+ team specialists • 200+ offers rotated • 15+ traffic ecosystems controlled • Each number appears via code-typing animation or terminal blink. ⸻ 📊 4. Team Case Studies (TMT Missions) • Carousel or interactive grid of cases: • Traffic source • Offer vertical • Geo focus • CTR, CR, ROI metrics • Optional: screenshots in code-framed boxes • Subtle slow flicker on data blocks. ⸻ 🧠 5. Founder Section: Timur • Image (edited in Matrix-like photo treatment: green glow or code particles) • Bio Text: Timur: Orchestrator of controlled chaos. Founder of TMT. Architect of decentralized performance domination. • Social links: • Instagram (green neon button) • YouTube Interview (CRT screen icon) ⸻ 👤 6. Team Block (Agents) • Title: THE OPERATORS • Display: • Stylized Matrix-style avatars (cybernetic, green glow, hacker masks) • Nicknames with roles: • @roi_architect — Facebook Conqueror • @traffic_necromancer — Multi-GEO Master • @bm_blacksmith — BM Engineer • Interactive effect: green particles floating near avatars. ⸻ 🤝 7. Partners Block (Networks & Verticals) • Logos (if allowed) as encrypted sigils or green holograms • Verticals listed clearly: • Gambling • Betting • Nutra • Finance • Utilities • Smooth holographic hover transitions. ⸻ 🚀 8. Contact CTA (Exit the Simulation) • Big Title: READY TO REWIRE YOUR TRAFFIC? • Subline: Join the operators who control the flow. • Button: 💬 Connect via Telegram • Background: accelerated green data rain as you hover. ⸻ 🖤 9. Footer • Clean, minimal: • Telegram / Instagram / YouTube icons (neon green flicker on hover) • Scroll-to-top button: green code pulse • Text: © 2025 TMT — Control the Flow ⸻ 🧬 Motion / Animation Effects: Элемент Эффект Hero Background Moving slow matrix rain, blur in foreground Metrics Counters Terminal typing effect Buttons on Hover CRT distortion + magnetic slow move Case Studies / Team Code flicker reveal Avatars Green noise floating particles Cursor Green laser tail
 
 
1
+ Create a one-page landing page for TMT (Traffic Monsters Team) — a global performance marketing team styled in the aesthetic of The Matrix. ❗️No mention of students, courses, or learning. ❗️Purely a high-level media buying and digital arbitrage business. Audience: • Partner networks (affiliate programs) • Direct advertisers (brands) • High-level traffic specialists and analysts • Market competitors (must create “wow effect”) ⸻ 🎨 Визуальная концепция: • Matrix style: • Deep black background (#000000) • Flowing green code streams (#00FF00) • Subtle metallic gradients and glass panels • Sharp, clean brutalism with cybernetic precision • Fonts: • Headlines: Monument Extended, Space Grotesk, or Matrix Code font (stylized) • Text: Inter, PP Neue Montreal, or JetBrains Mono • Effects: • Green neon outlines • Code rain overlays • Scroll-triggered terminal flickers • Kinetic glowing cursor • Magnetic slow-hover buttons ⸻ 🧱 Структура лендинга: ⸻ 🟢 1. Hero Section (The Entrance) • Dynamic background: slow moving Matrix code (black/green digital rain) • Main headline: TMT — TRAFFIC MONSTERS TEAM • Subline: We decode markets. We rewire performance. • CTAs (only buttons): • Enter the Network (Telegram) • View Case Studies • Kinetic mouse interactions (glowing green trail) ⸻ ⚙️ 2. Capabilities Block (What We Control) • Simple grid of services: • Traffic Scaling (FB, TikTok, Google, Push, Native) • Strategic Offer Mapping • Infrastructure Hacking (Keitaro, API networks) • Creative Labs (Video, UGC, Deepfake modules) • Direct Advertiser Integrations • Green grid overlays, minimalism, animated data nodes on hover. ⸻ 📈 3. TMT Numbers (Data Facts) • Metric counters: • 5M+ USD in managed traffic • 70+ team specialists • 200+ offers rotated • 15+ traffic ecosystems controlled • Each number appears via code-typing animation or terminal blink. ⸻ 📊 4. Team Case Studies (TMT Missions) • Carousel or interactive grid of cases: • Traffic source • Offer vertical • Geo focus • CTR, CR, ROI metrics • Optional: screenshots in code-framed boxes • Subtle slow flicker on data blocks. ⸻ 🧠 5. Founder Section: Timur • Image (edited in Matrix-like photo treatment: green glow or code particles) • Bio Text: Timur: Orchestrator of controlled chaos. Founder of TMT. Architect of decentralized performance domination. • Social links: • Instagram (green neon button) • YouTube Interview (CRT screen icon) ⸻ 👤 6. Team Block (Agents) • Title: THE OPERATORS • Display: • Stylized Matrix-style avatars (cybernetic, green glow, hacker masks) • Nicknames with roles: • @roi_architect — Facebook Conqueror • @traffic_necromancer — Multi-GEO Master • @bm_blacksmith — BM Engineer • Interactive effect: green particles floating near avatars. ⸻ 🤝 7. Partners Block (Networks & Verticals) • Logos (if allowed) as encrypted sigils or green holograms • Verticals listed clearly: • Gambling • Betting • Nutra • Finance • Utilities • Smooth holographic hover transitions. ⸻ 🚀 8. Contact CTA (Exit the Simulation) • Big Title: READY TO REWIRE YOUR TRAFFIC? • Subline: Join the operators who control the flow. • Button: 💬 Connect via Telegram • Background: accelerated green data rain as you hover. ⸻ 🖤 9. Footer • Clean, minimal: • Telegram / Instagram / YouTube icons (neon green flicker on hover) • Scroll-to-top button: green code pulse • Text: © 2025 TMT — Control the Flow ⸻ 🧬 Motion / Animation Effects: Элемент Эффект Hero Background Moving slow matrix rain, blur in foreground Metrics Counters Terminal typing effect Buttons on Hover CRT distortion + magnetic slow move Case Studies / Team Code flicker reveal Avatars Green noise floating particles Cursor Green laser tail
2
+ Сайт крутой - не меняй его! Только добавь по моему ТЗ: в первом блоке сделай - чтобы на фоне бегали цифры и тд, как в фильме матрицы! И еще добавь блок с иторией после первого блока - типа как наши ценности, миссия, когда появилась команда и тд! Только в стилистике рассказа, как в фильме матрица!