-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (55 loc) · 2.35 KB
/
index.html
File metadata and controls
59 lines (55 loc) · 2.35 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta
name="description"
content="Banana Lake is a soft endless runner playable with a cute lane character, bananas, grass, lake water, and calm daylight vibes."
/>
<meta name="theme-color" content="#dff4e8" />
<title>Banana Lake Playable</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div class="ambient ambient-a"></div>
<div class="ambient ambient-b"></div>
<div class="mesh"></div>
<main class="app-shell">
<section class="device-shell">
<div class="chrome-bar">
<div class="chrome-top">
<div>
<span class="eyebrow">Playable Ad</span>
<h1>Banana Lake</h1>
</div>
<button class="sound-toggle" id="musicToggle" type="button">Tap for Music</button>
</div>
<p>Swipe on mobile or hover with a mouse to guide a cute runner through sunny grass lanes and collect bananas by the lake.</p>
<div class="chip-row" aria-label="Playable highlights">
<span class="mini-chip">Endless zen run</span>
<span class="mini-chip">Daylight lake theme</span>
<span class="mini-chip">Cute banana collecting</span>
</div>
</div>
<div class="game-wrap">
<div class="game-badge">Portrait / Mobile First</div>
<div id="game-container" aria-label="Playable ad game area"></div>
<section class="cta-overlay is-hidden" id="ctaOverlay">
<div class="cta-panel">
<span class="eyebrow" id="ctaEyebrow">Banana Lake</span>
<h2 id="ctaTitle">Keep the Calm Run Going</h2>
<p id="ctaBody">The full game adds more cozy routes, cute characters, and endless banana trails by the water.</p>
<div class="stat-row" id="ctaStats"></div>
<div class="cta-actions">
<button class="primary-button" id="installButton">Install Game</button>
<button class="secondary-button" id="replayButton">Replay</button>
</div>
</div>
</section>
</div>
</section>
</main>
<script type="module" src="/src/main.js"></script>
</body>
</html>