timoon811 commited on
Commit
142f56d
·
verified ·
1 Parent(s): a47050d

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +130 -5
  2. prompts.txt +2 -1
index.html CHANGED
@@ -15,6 +15,8 @@
15
  --matrix-green: #00FF41;
16
  --matrix-dark: #000000;
17
  --matrix-light: #0D0208;
 
 
18
  }
19
 
20
  body {
@@ -350,6 +352,102 @@
350
  0%, 100% { opacity: 1; }
351
  50% { opacity: 0; }
352
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
353
  </style>
354
  </head>
355
  <body>
@@ -367,6 +465,18 @@
367
  <i class="fas fa-arrow-up"></i>
368
  </div>
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">
@@ -696,11 +806,11 @@
696
  <div class="flex flex-col lg:flex-row items-center gap-12">
697
  <div class="lg:w-1/3 relative">
698
  <div class="w-full h-96 bg-gray-900 relative overflow-hidden group">
699
- <div class="absolute inset-0 bg-[#00FF41] opacity-0 group-hover:opacity-5 transition-opacity duration-500"></div>
700
- <div class="absolute inset-0 flex items-center justify-center terminal-flicker">
701
- <span class="text-gray-600">[founder image]</span>
702
- </div>
703
- <div class="absolute bottom-0 left-0 right-0 h-1 bg-[#00FF41] transform origin-left scale-x-0 group-hover:scale-x-100 transition-transform duration-500"></div>
704
  </div>
705
  </div>
706
  <div class="lg:w-2/3">
@@ -1050,6 +1160,20 @@
1050
  });
1051
  }
1052
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1053
  // Initialize everything when DOM is loaded
1054
  document.addEventListener('DOMContentLoaded', () => {
1055
  createMatrixEffect();
@@ -1058,6 +1182,7 @@
1058
  animateCounters();
1059
  initScrollTop();
1060
  initMagneticButtons();
 
1061
 
1062
  // Intersection Observer for animations
1063
  const observer = new IntersectionObserver((entries) => {
 
15
  --matrix-green: #00FF41;
16
  --matrix-dark: #000000;
17
  --matrix-light: #0D0208;
18
+ --matrix-blue: #0066FF;
19
+ --matrix-red: #FF0033;
20
  }
21
 
22
  body {
 
352
  0%, 100% { opacity: 1; }
353
  50% { opacity: 0; }
354
  }
355
+
356
+ /* Pill Buttons */
357
+ .pill-container {
358
+ position: fixed;
359
+ bottom: 30px;
360
+ left: 50%;
361
+ transform: translateX(-50%);
362
+ display: flex;
363
+ gap: 30px;
364
+ z-index: 100;
365
+ }
366
+
367
+ .pill-button {
368
+ width: 120px;
369
+ height: 40px;
370
+ border-radius: 20px;
371
+ display: flex;
372
+ align-items: center;
373
+ justify-content: center;
374
+ font-weight: bold;
375
+ font-size: 14px;
376
+ text-transform: uppercase;
377
+ letter-spacing: 1px;
378
+ cursor: pointer;
379
+ transition: all 0.3s ease;
380
+ position: relative;
381
+ overflow: hidden;
382
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
383
+ }
384
+
385
+ .pill-button::before {
386
+ content: '';
387
+ position: absolute;
388
+ top: -10px;
389
+ left: -10px;
390
+ right: -10px;
391
+ bottom: -10px;
392
+ border-radius: 30px;
393
+ opacity: 0;
394
+ transition: opacity 0.3s;
395
+ }
396
+
397
+ .pill-button:hover::before {
398
+ opacity: 0.3;
399
+ }
400
+
401
+ .blue-pill {
402
+ background-color: var(--matrix-blue);
403
+ color: white;
404
+ border: 1px solid var(--matrix-blue);
405
+ }
406
+
407
+ .blue-pill::before {
408
+ background: radial-gradient(circle, rgba(0, 102, 255, 0.8), transparent 70%);
409
+ }
410
+
411
+ .blue-pill:hover {
412
+ box-shadow: 0 0 20px var(--matrix-blue);
413
+ transform: translateY(-3px);
414
+ }
415
+
416
+ .red-pill {
417
+ background-color: var(--matrix-red);
418
+ color: white;
419
+ border: 1px solid var(--matrix-red);
420
+ }
421
+
422
+ .red-pill::before {
423
+ background: radial-gradient(circle, rgba(255, 0, 51, 0.8), transparent 70%);
424
+ }
425
+
426
+ .red-pill:hover {
427
+ box-shadow: 0 0 20px var(--matrix-red);
428
+ transform: translateY(-3px);
429
+ }
430
+
431
+ .pill-glow {
432
+ position: absolute;
433
+ width: 100%;
434
+ height: 100%;
435
+ border-radius: 20px;
436
+ opacity: 0;
437
+ transition: opacity 0.3s;
438
+ }
439
+
440
+ .pill-button:hover .pill-glow {
441
+ opacity: 0.6;
442
+ }
443
+
444
+ .blue-glow {
445
+ box-shadow: 0 0 15px var(--matrix-blue);
446
+ }
447
+
448
+ .red-glow {
449
+ box-shadow: 0 0 15px var(--matrix-red);
450
+ }
451
  </style>
452
  </head>
453
  <body>
 
465
  <i class="fas fa-arrow-up"></i>
466
  </div>
467
 
468
+ <!-- Pill Buttons -->
469
+ <div class="pill-container">
470
+ <div class="pill-button blue-pill">
471
+ <div class="pill-glow blue-glow"></div>
472
+ Blue Pill
473
+ </div>
474
+ <div class="pill-button red-pill">
475
+ <div class="pill-glow red-glow"></div>
476
+ Red Pill
477
+ </div>
478
+ </div>
479
+
480
  <!-- Hero Section -->
481
  <section class="min-h-screen flex items-center justify-center relative overflow-hidden crt-effect">
482
  <div class="container mx-auto px-6 py-20 text-center relative z-10">
 
806
  <div class="flex flex-col lg:flex-row items-center gap-12">
807
  <div class="lg:w-1/3 relative">
808
  <div class="w-full h-96 bg-gray-900 relative overflow-hidden group">
809
+ <div class="absolute inset-0 bg-[#00FF41] opacity-0 group-hover:opacity-5 transition-opacity duration-500"></div>
810
+ <div class="absolute inset-0 flex items-center justify-center terminal-flicker">
811
+ <span class="text-gray-600">[founder image]</span>
812
+ </div>
813
+ <div class="absolute bottom-0 left-0 right-0 h-1 bg-[#00FF41] transform origin-left scale-x-0 group-hover:scale-x-100 transition-transform duration-500"></div>
814
  </div>
815
  </div>
816
  <div class="lg:w-2/3">
 
1160
  });
1161
  }
1162
 
1163
+ // Pill Button Effects
1164
+ function initPillButtons() {
1165
+ const bluePill = document.querySelector('.blue-pill');
1166
+ const redPill = document.querySelector('.red-pill');
1167
+
1168
+ bluePill.addEventListener('click', () => {
1169
+ alert('You chose the Blue Pill - Continue living in the blissful ignorance of the ordinary marketing world.');
1170
+ });
1171
+
1172
+ redPill.addEventListener('click', () => {
1173
+ alert('You chose the Red Pill - Welcome to the real world of performance marketing. Follow the white rabbit...');
1174
+ });
1175
+ }
1176
+
1177
  // Initialize everything when DOM is loaded
1178
  document.addEventListener('DOMContentLoaded', () => {
1179
  createMatrixEffect();
 
1182
  animateCounters();
1183
  initScrollTop();
1184
  initMagneticButtons();
1185
+ initPillButtons();
1186
 
1187
  // Intersection Observer for animations
1188
  const observer = new IntersectionObserver((entries) => {
prompts.txt CHANGED
@@ -1,2 +1,3 @@
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
- Сайт крутой - не меняй его! Только добавь по моему ТЗ: в первом блоке сделай - чтобы на фоне бегали цифры и тд, как в фильме матрицы! И еще добавь блок с иторией после первого блока - типа как наши ценности, миссия, когда появилась команда и тд! Только в стилистике рассказа, как в фильме матрица!
 
 
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
+ Сайт крутой - не меняй его! Только добавь по моему ТЗ: в первом блоке сделай - чтобы на фоне бегали цифры и тд, как в фильме матрицы! И еще добавь блок с иторией после первого блока - типа как наши ценности, миссия, когда появилась команда и тд! Только в стилистике рассказа, ка�� в фильме матрица!
3
+ Все ок - только снизу сделай 2 кнопки - в виде красной и синей таблетки - как в матрице!