Manual changes saved
Browse files- website.html +45 -38
website.html
CHANGED
|
@@ -1,4 +1,3 @@
|
|
| 1 |
-
|
| 2 |
<!DOCTYPE html>
|
| 3 |
<html lang="en">
|
| 4 |
<head>
|
|
@@ -11,12 +10,36 @@
|
|
| 11 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
</head>
|
| 13 |
<body class="bg-white min-h-screen">
|
|
|
|
| 14 |
<div class="container mx-auto px-4 py-8">
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</div>
|
|
|
|
| 20 |
<style>
|
| 21 |
body {
|
| 22 |
font-family: "Inter", sans-serif;
|
|
@@ -47,13 +70,11 @@ body {
|
|
| 47 |
font-weight: 400;
|
| 48 |
max-width: 800px;
|
| 49 |
}
|
| 50 |
-
/* SECTION */
|
| 51 |
.section {
|
| 52 |
margin-bottom: 80px;
|
| 53 |
padding-bottom: 40px;
|
| 54 |
border-bottom: 1px solid #f1f5f9;
|
| 55 |
}
|
| 56 |
-
|
| 57 |
.section:last-child {
|
| 58 |
border-bottom: none;
|
| 59 |
}
|
|
@@ -72,7 +93,6 @@ body {
|
|
| 72 |
margin-bottom: 24px;
|
| 73 |
color: #334155;
|
| 74 |
}
|
| 75 |
-
/* 2-COLUMNS */
|
| 76 |
.two-cols {
|
| 77 |
display: grid;
|
| 78 |
grid-template-columns: 1.2fr 1fr;
|
|
@@ -94,12 +114,10 @@ body {
|
|
| 94 |
padding-left: 0;
|
| 95 |
margin: 0;
|
| 96 |
}
|
| 97 |
-
|
| 98 |
.side-box li {
|
| 99 |
font-size: 16px;
|
| 100 |
padding: 4px 0;
|
| 101 |
}
|
| 102 |
-
/* GRID CARDS (3) */
|
| 103 |
.card-grid-3 {
|
| 104 |
display: grid;
|
| 105 |
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
@@ -114,7 +132,6 @@ body {
|
|
| 114 |
transition: all 0.3s ease;
|
| 115 |
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
| 116 |
}
|
| 117 |
-
|
| 118 |
.card-3:hover {
|
| 119 |
transform: translateY(-5px);
|
| 120 |
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
|
@@ -124,7 +141,6 @@ body {
|
|
| 124 |
font-size: 20px;
|
| 125 |
margin-bottom: 12px;
|
| 126 |
}
|
| 127 |
-
/* GRID CARDS (2 columns) */
|
| 128 |
.card-grid-2 {
|
| 129 |
display: grid;
|
| 130 |
grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
|
|
@@ -137,9 +153,8 @@ body {
|
|
| 137 |
border-radius: 12px;
|
| 138 |
padding: 32px;
|
| 139 |
transition: all 0.3s ease;
|
| 140 |
-
box-shadow: 0 1px
|
| 141 |
}
|
| 142 |
-
|
| 143 |
.card-2:hover {
|
| 144 |
transform: translateY(-5px);
|
| 145 |
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
|
@@ -149,18 +164,14 @@ body {
|
|
| 149 |
font-size: 20px;
|
| 150 |
margin-bottom: 12px;
|
| 151 |
}
|
| 152 |
-
|
| 153 |
-
/* LISTS */
|
| 154 |
ul.clean-list {
|
| 155 |
margin: 10px 0 0 12px;
|
| 156 |
padding-left: 0;
|
| 157 |
}
|
| 158 |
-
|
| 159 |
ul.clean-list li {
|
| 160 |
margin-bottom: 6px;
|
| 161 |
line-height: 1.5;
|
| 162 |
}
|
| 163 |
-
/* SUMMARY BAR */
|
| 164 |
.summary {
|
| 165 |
margin-top: 48px;
|
| 166 |
padding: 32px;
|
|
@@ -174,25 +185,21 @@ body {
|
|
| 174 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
| 175 |
}
|
| 176 |
</style>
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
</html>
|
| 183 |
-
<div class="flex flex-wrap gap-4 mb-8">
|
| 184 |
-
<a href="/index.html" class="bg-gray-200 hover:bg-gray-300 text-gray-800 font-medium py-2 px-4 rounded-lg transition-all shadow hover:shadow-md active:shadow-sm border border-gray-300">
|
| 185 |
-
← Back to Home
|
| 186 |
-
</a>
|
| 187 |
-
<a href="/report.html" class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-4 rounded-lg transition-all shadow hover:shadow-md active:shadow-sm border border-blue-700">
|
| 188 |
-
📊 Report
|
| 189 |
-
</a>
|
| 190 |
-
</div>
|
| 191 |
|
| 192 |
<div class="page-container">
|
|
|
|
| 193 |
<h1 class="page-title">Website — What We Do</h1>
|
| 194 |
<p class="page-subtitle">Página 1 — Estado atual</p>
|
| 195 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 196 |
<section class="section">
|
| 197 |
<h2 class="section-title">O papel atual do website no ecossistema beatdagame</h2>
|
| 198 |
|
|
@@ -223,6 +230,7 @@ body {
|
|
| 223 |
</section>
|
| 224 |
|
| 225 |
|
|
|
|
| 226 |
|
| 227 |
<!-- O QUE FAZ HOJE -->
|
| 228 |
<section class="section">
|
|
@@ -257,9 +265,8 @@ body {
|
|
| 257 |
</div>
|
| 258 |
</section>
|
| 259 |
|
|
|
|
| 260 |
|
| 261 |
-
|
| 262 |
-
<!-- O QUE NÃO FAZ -->
|
| 263 |
<section class="section">
|
| 264 |
<h2 class="section-title">O que o website não faz (e deveria fazer)</h2>
|
| 265 |
|
|
@@ -314,7 +321,6 @@ body {
|
|
| 314 |
</section>
|
| 315 |
|
| 316 |
|
| 317 |
-
|
| 318 |
<!-- PROBLEMAS -->
|
| 319 |
<section class="section">
|
| 320 |
<h2 class="section-title">Problemas identificados</h2>
|
|
@@ -329,8 +335,6 @@ body {
|
|
| 329 |
</ul>
|
| 330 |
</section>
|
| 331 |
|
| 332 |
-
|
| 333 |
-
|
| 334 |
<!-- CONCLUSÃO -->
|
| 335 |
<section class="section">
|
| 336 |
<h2 class="section-title">Conclusão & oportunidade</h2>
|
|
@@ -377,3 +381,6 @@ body {
|
|
| 377 |
</section>
|
| 378 |
|
| 379 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
|
|
|
| 10 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 11 |
</head>
|
| 12 |
<body class="bg-white min-h-screen">
|
| 13 |
+
|
| 14 |
<div class="container mx-auto px-4 py-8">
|
| 15 |
+
|
| 16 |
+
<!-- TOP BUTTONS -->
|
| 17 |
+
<div class="flex flex-wrap gap-4 mb-8">
|
| 18 |
+
|
| 19 |
+
<a href="/index.html"
|
| 20 |
+
class="bg-gray-200 hover:bg-gray-300 text-gray-800 font-medium py-2 px-4 rounded-lg
|
| 21 |
+
transition-all shadow hover:shadow-md active:shadow-sm border border-gray-300">
|
| 22 |
+
← Back to Home
|
| 23 |
+
</a>
|
| 24 |
+
|
| 25 |
+
<a href="/report.html"
|
| 26 |
+
class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-4 rounded-lg
|
| 27 |
+
transition-all shadow hover:shadow-md active:shadow-sm border border-blue-700">
|
| 28 |
+
📊 Report
|
| 29 |
+
</a>
|
| 30 |
+
|
| 31 |
+
<!-- NEW FUTURE BUTTON (ADDED) -->
|
| 32 |
+
<a href="https://www.figma.com/proto/2KZFMqCEdoSsMs6n8RX9xk/BeatDaGame?page-id=4074%3A21644&node-id=4107-17845&viewport=644%2C40%2C0.25&t=2gFKr1EAbI1wJteQ-1&scaling=min-zoom&content-scaling=fixed&starting-point-node-id=4107%3A17845"
|
| 33 |
+
target="_blank"
|
| 34 |
+
class="bg-purple-600 hover:bg-purple-700 text-white font-medium py-2 px-4 rounded-lg transition-all
|
| 35 |
+
shadow hover:shadow-md active:shadow-sm border border-purple-700">
|
| 36 |
+
🚀 The Future
|
| 37 |
+
</a>
|
| 38 |
+
|
| 39 |
+
</div>
|
| 40 |
+
|
| 41 |
</div>
|
| 42 |
+
|
| 43 |
<style>
|
| 44 |
body {
|
| 45 |
font-family: "Inter", sans-serif;
|
|
|
|
| 70 |
font-weight: 400;
|
| 71 |
max-width: 800px;
|
| 72 |
}
|
|
|
|
| 73 |
.section {
|
| 74 |
margin-bottom: 80px;
|
| 75 |
padding-bottom: 40px;
|
| 76 |
border-bottom: 1px solid #f1f5f9;
|
| 77 |
}
|
|
|
|
| 78 |
.section:last-child {
|
| 79 |
border-bottom: none;
|
| 80 |
}
|
|
|
|
| 93 |
margin-bottom: 24px;
|
| 94 |
color: #334155;
|
| 95 |
}
|
|
|
|
| 96 |
.two-cols {
|
| 97 |
display: grid;
|
| 98 |
grid-template-columns: 1.2fr 1fr;
|
|
|
|
| 114 |
padding-left: 0;
|
| 115 |
margin: 0;
|
| 116 |
}
|
|
|
|
| 117 |
.side-box li {
|
| 118 |
font-size: 16px;
|
| 119 |
padding: 4px 0;
|
| 120 |
}
|
|
|
|
| 121 |
.card-grid-3 {
|
| 122 |
display: grid;
|
| 123 |
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
|
|
| 132 |
transition: all 0.3s ease;
|
| 133 |
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
| 134 |
}
|
|
|
|
| 135 |
.card-3:hover {
|
| 136 |
transform: translateY(-5px);
|
| 137 |
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
|
|
|
| 141 |
font-size: 20px;
|
| 142 |
margin-bottom: 12px;
|
| 143 |
}
|
|
|
|
| 144 |
.card-grid-2 {
|
| 145 |
display: grid;
|
| 146 |
grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
|
|
|
|
| 153 |
border-radius: 12px;
|
| 154 |
padding: 32px;
|
| 155 |
transition: all 0.3s ease;
|
| 156 |
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
| 157 |
}
|
|
|
|
| 158 |
.card-2:hover {
|
| 159 |
transform: translateY(-5px);
|
| 160 |
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
|
|
|
| 164 |
font-size: 20px;
|
| 165 |
margin-bottom: 12px;
|
| 166 |
}
|
|
|
|
|
|
|
| 167 |
ul.clean-list {
|
| 168 |
margin: 10px 0 0 12px;
|
| 169 |
padding-left: 0;
|
| 170 |
}
|
|
|
|
| 171 |
ul.clean-list li {
|
| 172 |
margin-bottom: 6px;
|
| 173 |
line-height: 1.5;
|
| 174 |
}
|
|
|
|
| 175 |
.summary {
|
| 176 |
margin-top: 48px;
|
| 177 |
padding: 32px;
|
|
|
|
| 185 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
| 186 |
}
|
| 187 |
</style>
|
| 188 |
+
|
| 189 |
+
<script>
|
| 190 |
+
feather.replace();
|
| 191 |
+
</script>
|
| 192 |
+
<script src="script.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 193 |
|
| 194 |
<div class="page-container">
|
| 195 |
+
|
| 196 |
<h1 class="page-title">Website — What We Do</h1>
|
| 197 |
<p class="page-subtitle">Página 1 — Estado atual</p>
|
| 198 |
+
|
| 199 |
+
<!-- REST OF YOUR PAGE (UNCHANGED) -->
|
| 200 |
+
<!-- (todo o conteúdo que já tinhas, mantido a 100%) -->
|
| 201 |
+
|
| 202 |
+
<!-- PAPEL ATUAL -->
|
| 203 |
<section class="section">
|
| 204 |
<h2 class="section-title">O papel atual do website no ecossistema beatdagame</h2>
|
| 205 |
|
|
|
|
| 230 |
</section>
|
| 231 |
|
| 232 |
|
| 233 |
+
<!-- (o resto da tua página continua 100% igual) -->
|
| 234 |
|
| 235 |
<!-- O QUE FAZ HOJE -->
|
| 236 |
<section class="section">
|
|
|
|
| 265 |
</div>
|
| 266 |
</section>
|
| 267 |
|
| 268 |
+
<!-- ... RESTO DA PÁGINA COMPLETA ... (mantida sem alterações) -->
|
| 269 |
|
|
|
|
|
|
|
| 270 |
<section class="section">
|
| 271 |
<h2 class="section-title">O que o website não faz (e deveria fazer)</h2>
|
| 272 |
|
|
|
|
| 321 |
</section>
|
| 322 |
|
| 323 |
|
|
|
|
| 324 |
<!-- PROBLEMAS -->
|
| 325 |
<section class="section">
|
| 326 |
<h2 class="section-title">Problemas identificados</h2>
|
|
|
|
| 335 |
</ul>
|
| 336 |
</section>
|
| 337 |
|
|
|
|
|
|
|
| 338 |
<!-- CONCLUSÃO -->
|
| 339 |
<section class="section">
|
| 340 |
<h2 class="section-title">Conclusão & oportunidade</h2>
|
|
|
|
| 381 |
</section>
|
| 382 |
|
| 383 |
</div>
|
| 384 |
+
|
| 385 |
+
</body>
|
| 386 |
+
</html>
|