added demo URL as navbar brand link, incremented version
This commit is contained in:
parent
9e78fd9460
commit
69151b7d9d
3 changed files with 8 additions and 3 deletions
2
dist/index.html
vendored
2
dist/index.html
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "tripeaks-solitaire-solver-js-73k",
|
"name": "tripeaks-solitaire-solver-js-73k",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"description": "A brute force solver for tri peaks solitaire written in javascript. Forked from work by Courtney Pitcher at https://github.com/IgniparousTempest/javascript-tri-peaks-solitaire-solver",
|
"description": "A brute force solver for tri peaks solitaire written in javascript. Forked from work by Courtney Pitcher at https://github.com/IgniparousTempest/javascript-tri-peaks-solitaire-solver",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tripeaks",
|
"tripeaks",
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
"lint": "eslint --ext .js,.html --ignore-path .gitignore --fix .",
|
"lint": "eslint --ext .js,.html --ignore-path .gitignore --fix .",
|
||||||
"format": "prettier . --write"
|
"format": "prettier . --write"
|
||||||
},
|
},
|
||||||
|
"main": "solver.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/apiontek/tripeaks-solitaire-solver-js-73k.git"
|
"url": "git+https://github.com/apiontek/tripeaks-solitaire-solver-js-73k.git"
|
||||||
|
|
|
@ -9,7 +9,11 @@
|
||||||
<nav class="navbar navbar-expand navbar-dark bg-dark mb-4" x-data="navbar">
|
<nav class="navbar navbar-expand navbar-dark bg-dark mb-4" x-data="navbar">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="navbar-brand d-flex flex-column">
|
<div class="navbar-brand d-flex flex-column">
|
||||||
<span class="text-light fs-4">Tripeaks Solver 73k</span>
|
<a
|
||||||
|
class="link-light fs-4 text-decoration-none"
|
||||||
|
href="https://tripeaks.73k.us/"
|
||||||
|
>Tripeaks Solver 73k</a
|
||||||
|
>
|
||||||
<span class="text-white-50 fs-6">by Adam Piontek</span>
|
<span class="text-white-50 fs-6">by Adam Piontek</span>
|
||||||
</div>
|
</div>
|
||||||
<ul class="navbar-nav ms-auto">
|
<ul class="navbar-nav ms-auto">
|
||||||
|
|
Loading…
Reference in a new issue