-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslicestack.html
More file actions
73 lines (67 loc) · 3.54 KB
/
slicestack.html
File metadata and controls
73 lines (67 loc) · 3.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Slice Stack - Meter Games</title>
<link rel="icon" href="images/favicon-light.ico" type="image/x-icon" />
<link rel="icon" href="images/favicon-light.ico" type="image/x-icon" media="(prefers-color-scheme: light)" />
<link rel="icon" href="images/favicon-dark.ico" type="image/x-icon" media="(prefers-color-scheme: dark)" />
<script>
const savedTheme = localStorage.getItem("theme") || "dark";
document.documentElement.setAttribute("data-theme", savedTheme);
</script>
<link rel="stylesheet" href="style.css" />
</head>
<body class="slice-theme">
<div class="container">
<site-header page="slicestack"></site-header>
<section class="hero">
<h1>Slice Stack</h1>
<p>Stack. Relax. Ascend. A polished arcade experience.</p>
<a href="#" target="_blank" class="btn">Coming soon to Google Play</a>
<div class="screenshot-row">
<img src="images/slice-stack-1.webp" alt="gameplay 1" class="mobile-screenshot" />
<img src="images/slice-stack-2.webp" alt="gameplay 2" class="mobile-screenshot" />
<img src="images/slice-stack-3.webp" alt="gameplay 3" class="mobile-screenshot" />
</div>
</section>
<div class="grid">
<div class="card">
<h3>The Loop</h3>
<ul class="feature-list">
<li><strong>Satisfying Physics:</strong> Stack moving blocks; missed overlaps slice away.</li>
<li><strong>Premium Feel:</strong> No Ads. Designed for relaxation, not interruption.</li>
<li><strong>Clean Audio:</strong> Calm music, satisfying SFX, and haptic vibration support.</li>
<li><strong>Smooth UI:</strong> Transitions and "Try Again" animations are instant and fluid.</li>
</ul>
</div>
<div class="card">
<h3>Progression</h3>
<ul class="feature-list">
<li><strong>The Shop:</strong> Unlock skins, backgrounds, and music tracks.</li>
<li><strong>Missions:</strong> Structured objectives to guide your gameplay.</li>
<li><strong>Daily Rewards:</strong> Bonuses for returning players.</li>
<li><strong>Powerups:</strong> Slow time, perfect magnets, coin doublers, and extra lives.</li>
</ul>
</div>
</div>
<div class="changelog-section">
<h2>Update Log</h2>
<div class="changelog-box">
<div class="version-entry">
<div class="version-header">
<span class="version-title" style="color: var(--slice-accent)">Version 1.0</span>
<span class="badge-latest" style="background: var(--slice-accent); color: white">Latest</span>
</div>
<ul class="feature-list">
<li>First release!</li>
</ul>
</div>
</div>
</div>
<site-footer></site-footer>
</div>
<script src="script.js"></script>
</body>
</html>