Skip to content

Commit

Permalink
build: deploy 7cb24a2 to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] committed Oct 29, 2024
0 parents commit 717dc44
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 0 deletions.
1 change: 1 addition & 0 deletions assets/index-Dfblm97q.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/index-DzmYlhYM.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

75 changes: 75 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Button clicker idle game." />

<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="manifest.json" />


<title>Button Clicker | remarkablegames</title>
<script type="module" crossorigin src="/button-clicker/assets/index-DzmYlhYM.js"></script>
<link rel="stylesheet" crossorigin href="/button-clicker/assets/index-Dfblm97q.css">
</head>
<body>
<noscript>You need to enable JavaScript to play this game.</noscript>

<header id="message">Welcome to Button Clicker.</header>
<main>
<h1>Button Clicker</h1>
<p id="counter">0</p>
<p>
<button id="button" title="Click Button">Click Button</button>
</p>
<table>
<thead>
<tr>
<th></th>
<th>Cost</th>
<th>Current Output</th>
<th>Next Output</th>
</tr>
</thead>
<tbody id="store">
<tr id="cursor">
<td>
<button disabled title="Cursor">Cursor</button>&nbsp;
<span class="owned"></span>
</td>
<td class="cost"></td>
<td class="output-current"></td>
<td class="output-next"></td>
</tr>
</tbody>
</table>
</main>

<!-- Global site tag (gtag.js) - Google Analytics -->
<script>
window.dataLayer = window.dataLayer || [];
window.gtag = function () {
dataLayer.push(arguments);
};
gtag('js', new Date());
</script>


<!--
GitHub Corners. See https://github.com/remarkablemark/github-corners
-->
<script
src="https://unpkg.com/github-corners/dist/embed.min.js"
data-href="https://github.com/remarkablegames/button-clicker"
data-target="_blank"
async
defer
></script>
</body>
</html>
9 changes: 9 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"short_name": "Button Clicker",
"name": "Button Clicker",
"icons": [],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}

0 comments on commit 717dc44

Please sign in to comment.