timoon811 commited on
Commit
4bf3814
·
verified ·
1 Parent(s): 3f95060

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +199 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Whatwecont
3
- emoji: 📊
4
  colorFrom: pink
5
- colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: whatwecont
3
+ emoji: 🐳
4
  colorFrom: pink
5
+ colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,199 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>TMT - What We Control</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
9
+ <style>
10
+ @keyframes dataFlow {
11
+ 0% { background-position: 0 0; }
12
+ 100% { background-position: 0 -100px; }
13
+ }
14
+
15
+ @keyframes terminalType {
16
+ from { width: 0; }
17
+ to { width: 100%; }
18
+ }
19
+
20
+ @keyframes pulse {
21
+ 0% { text-shadow: 0 0 5px #00FF00; }
22
+ 50% { text-shadow: 0 0 20px #00FF00; }
23
+ 100% { text-shadow: 0 0 5px #00FF00; }
24
+ }
25
+
26
+ @keyframes moduleAppear {
27
+ 0% { opacity: 0; transform: scale(0.8); box-shadow: 0 0 0 rgba(0, 255, 0, 0); }
28
+ 50% { opacity: 1; transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 255, 0, 0.5); }
29
+ 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 rgba(0, 255, 0, 0); }
30
+ }
31
+
32
+ @keyframes borderGlow {
33
+ 0% { box-shadow: 0 0 5px #00FF00; }
34
+ 50% { box-shadow: 0 0 15px #00FF00; }
35
+ 100% { box-shadow: 0 0 5px #00FF00; }
36
+ }
37
+
38
+ @keyframes textBreath {
39
+ 0% { transform: scale(1); }
40
+ 50% { transform: scale(1.02); }
41
+ 100% { transform: scale(1); }
42
+ }
43
+
44
+ .matrix-bg {
45
+ background-color: #000000;
46
+ background-image:
47
+ linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
48
+ linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
49
+ background-size: 30px 30px;
50
+ position: relative;
51
+ overflow: hidden;
52
+ }
53
+
54
+ .matrix-bg::before {
55
+ content: "";
56
+ position: absolute;
57
+ top: 0;
58
+ left: 0;
59
+ right: 0;
60
+ bottom: 0;
61
+ background: linear-gradient(
62
+ rgba(0, 255, 0, 0.03) 1px,
63
+ transparent 1px
64
+ );
65
+ background-size: 100% 5px;
66
+ animation: dataFlow 2s linear infinite;
67
+ pointer-events: none;
68
+ }
69
+
70
+ .terminal-text {
71
+ font-family: 'JetBrains Mono', monospace;
72
+ display: inline-block;
73
+ overflow: hidden;
74
+ white-space: nowrap;
75
+ border-right: 2px solid #00FF00;
76
+ animation: terminalType 1.5s steps(15) 1s 1 normal both;
77
+ }
78
+
79
+ .terminal-text::after {
80
+ content: "";
81
+ animation: blink 1s steps(5) infinite;
82
+ }
83
+
84
+ .pulse-text {
85
+ animation: pulse 2s ease-in-out;
86
+ }
87
+
88
+ .module {
89
+ animation: moduleAppear 0.8s ease-out forwards;
90
+ opacity: 0;
91
+ }
92
+
93
+ .module:hover {
94
+ animation: borderGlow 1.5s infinite ease-in-out;
95
+ }
96
+
97
+ .module:hover .module-title {
98
+ animation: textBreath 2s infinite ease-in-out;
99
+ }
100
+
101
+ .pixel-icon {
102
+ image-rendering: pixelated;
103
+ image-rendering: -moz-crisp-edges;
104
+ image-rendering: crisp-edges;
105
+ }
106
+ </style>
107
+ </head>
108
+ <body class="matrix-bg min-h-screen py-12 px-4 sm:px-6 lg:px-8">
109
+ <div class="max-w-6xl mx-auto">
110
+ <!-- Section Header -->
111
+ <div class="text-center mb-16">
112
+ <h1 class="text-4xl sm:text-5xl md:text-6xl font-bold text-green-500 mb-4 overflow-hidden">
113
+ <span class="terminal-text">WHAT WE CONTROL</span>
114
+ </h1>
115
+ </div>
116
+
117
+ <!-- Control Modules Grid -->
118
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-6">
119
+ <!-- Module 1: TRAFFIC SCALING -->
120
+ <div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 1.5s;">
121
+ <div class="flex items-center mb-4">
122
+ <span class="text-green-500 mr-3 text-xl">🎯</span>
123
+ <h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">TRAFFIC SCALING</h2>
124
+ </div>
125
+ <p class="text-green-300 font-mono">FB, TikTok, Google, Push, Native - we dominate all channels with surgical precision.</p>
126
+ </div>
127
+
128
+ <!-- Module 2: STRATEGIC OFFER MAPPING -->
129
+ <div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 1.8s;">
130
+ <div class="flex items-center mb-4">
131
+ <span class="text-green-500 mr-3 text-xl">🗺️</span>
132
+ <h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">STRATEGIC OFFER MAPPING</h2>
133
+ </div>
134
+ <p class="text-green-300 font-mono">Algorithmic matching of offers to traffic sources for maximum conversion efficiency.</p>
135
+ </div>
136
+
137
+ <!-- Module 3: INFRASTRUCTURE HACKING -->
138
+ <div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 2.1s;">
139
+ <div class="flex items-center mb-4">
140
+ <span class="text-green-500 mr-3 text-xl">🔧</span>
141
+ <h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">INFRASTRUCTURE HACKING</h2>
142
+ </div>
143
+ <p class="text-green-300 font-mono">Keitaro, API networks, custom tracking solutions - we build the tools that others copy.</p>
144
+ </div>
145
+
146
+ <!-- Module 4: CREATIVE LABS -->
147
+ <div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 2.4s;">
148
+ <div class="flex items-center mb-4">
149
+ <span class="text-green-500 mr-3 text-xl">🎬</span>
150
+ <h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">CREATIVE LABS</h2>
151
+ </div>
152
+ <p class="text-green-300 font-mono">Video, UGC, Deepfake modules - our creatives outperform industry benchmarks by 300%.</p>
153
+ </div>
154
+
155
+ <!-- Module 5: DIRECT INTEGRATIONS -->
156
+ <div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 2.7s;">
157
+ <div class="flex items-center mb-4">
158
+ <span class="text-green-500 mr-3 text-xl">🤝</span>
159
+ <h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">DIRECT INTEGRATIONS</h2>
160
+ </div>
161
+ <p class="text-green-300 font-mono">White-glove service for brands seeking direct access to premium traffic flows.</p>
162
+ </div>
163
+
164
+ <!-- Module 6: DATA SCIENCE -->
165
+ <div class="module border border-green-500 p-6 rounded-lg bg-black bg-opacity-70 backdrop-blur-sm transition-all duration-300" style="animation-delay: 3.0s;">
166
+ <div class="flex items-center mb-4">
167
+ <span class="text-green-500 mr-3 text-xl">🧠</span>
168
+ <h2 class="module-title text-2xl font-bold text-green-500 uppercase font-mono">DATA SCIENCE</h2>
169
+ </div>
170
+ <p class="text-green-300 font-mono">Predictive analytics and machine learning models that anticipate market shifts.</p>
171
+ </div>
172
+ </div>
173
+ </div>
174
+
175
+ <script>
176
+ document.addEventListener('DOMContentLoaded', function() {
177
+ // Add pulse animation to header after typing completes
178
+ setTimeout(function() {
179
+ const terminalText = document.querySelector('.terminal-text');
180
+ terminalText.classList.remove('terminal-text');
181
+ terminalText.style.borderRight = 'none';
182
+ terminalText.classList.add('pulse-text');
183
+ }, 2500);
184
+
185
+ // Add hover effects to modules
186
+ const modules = document.querySelectorAll('.module');
187
+ modules.forEach(module => {
188
+ module.addEventListener('mouseenter', function() {
189
+ this.style.transform = 'translateY(-5px)';
190
+ });
191
+
192
+ module.addEventListener('mouseleave', function() {
193
+ this.style.transform = 'translateY(0)';
194
+ });
195
+ });
196
+ });
197
+ </script>
198
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=timoon811/whatwecont" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
199
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ ✅ PROMPT: TMT — Block 3: “What We Control” (Matrix Digital Weapons Console) ⸻ 🎥 ОБЩАЯ ИДЕЯ: Create a cinematic control-console style section for Traffic Monsters Team landing page, inspired by “The Matrix”. The section must feel like the user is looking at a weapons loadout screen or system command center, where each capability is displayed like an unlocked tactical asset. ⸻ 🧱 КОМПОЗИЦИЯ БЛОКА: ⸻ 1. Background (Фон) • Глубокий чёрный фон (#000000). • Слабая полупрозрачная сетка, как у тактических экранов (едва заметная квадратная сетка на фоне). • Лёгкий “поток данных” на фоне (очень тонкие бегущие линии данных горизонтально). ⸻ 2. Container Style (Оформление зоны) • Блок разбит на 6 панелей (“Digital Control Modules”), каждая с чёткой рамкой (неоново-зелёная тонкая обводка #00FF00). • Панели располагаются в две колонки (по 3 в каждой). На мобилках — одна колонка с аккуратным стеком. • Панели слегка светятся зелёным при наведении. ⸻ 3. Контент каждой панели Название модуля Подпись/описание TRAFFIC SCALING FB, TikTok, Google, Push, Native - we dominate all channels with surgical precision. STRATEGIC OFFER MAPPING Algorithmic matching of offers to traffic sources for maximum conversion efficiency. INFRASTRUCTURE HACKING Keitaro, API networks, custom tracking solutions - we build the tools that others copy. CREATIVE LABS Video, UGC, Deepfake modules - our creatives outperform industry benchmarks by 300%. DIRECT INTEGRATIONS White-glove service for brands seeking direct access to premium traffic flows. DATA SCIENCE Predictive analytics and machine learning models that anticipate market shifts. • Название модуля: • Заглавными буквами, большим кеглем. • Моноширинный шрифт (например, JetBrains Mono Bold). • Цвет: яркий зелёный #00FF00. • Описание под названием: • Меньшим шрифтом. • Светло-зелёным или серо-зелёным цветом (#66FF66), чтобы отступать визуально назад. ⸻ 4. Анимации Элемент Анимация Появление блоков Блоки появляются по очереди с коротким терминальным “всплеском света” (как активация консолей). Наведение на блок Блок подсвечивается тонкой неоновой анимацией обводки. Внутри панели При наведении текст модуля слегка пульсирует или “дышит”. ⸻ 5. Элементы управления • Можно добавить иконки около каждого названия модуля (пиксельные/терминальные иконки): • 🔧 для Infrastructure • 🎯 для Traffic Scaling • 🧠 для Data Science • 🎬 для Creative Labs • 🤝 для Direct Integrations • 🗺️ для Strategic Mapping (Иконки очень маленькие, pixel-art стилистика, минимализм.) ⸻ 📌 ТЕКСТ БЛОКА: Заголовок секции (вверху, перед модулями): WHAT WE CONTROL • Большой заголовок (#00FF00), • Печатается эффектом терминального набора (без моргания). • После появления — лёгкий зелёный “пульс” на несколько миллисекунд. ⸻ 📜 ИТОГОВАЯ СХЕМА БЛОКА: • Чёрный фон + слабая сетка + горизонтальные световые линии. • Вверху: заголовок “WHAT WE CONTROL” (печать + пульс). • Под заголовком: сетка из 6 модулей (по 2 колонки). • Каждая панель — заголовок модуля + подпись. • Анимация появления блоков: последовательная активация. • При наведении: лёгкая пульсация текста и светящаяся рамка. ⸻ 🎨 ВИЗУАЛЬНЫЕ ПАРАМЕТРЫ: Элемент Значение Цвет фона #000000 Цвет шрифтов Основной текст #00FF00, описание #66FF66 Стили шрифтов Моноширинные, жирные для заголовков Стили анимаций Плавная, терминальная активация