running-tools

A collection of tools for runners and their coaches
git clone https://git.ashermorgan.net/running-tools/
Log | Files | Refs | README

commit 7c2b54eed8e0cc3ea978f9b6cdf0a36019374ffa
parent 9a4659fafc0ee03d15d903b6afb4e52f34b4c427
Author: ashermorgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Thu, 26 Aug 2021 12:44:33 -0700

Update description

Diffstat:
MREADME.md | 8++------
Mpackage.json | 2+-
Mpublic/404.html | 2+-
Mpublic/index.html | 4++--
Msrc/views/Home.vue | 6+++---
5 files changed, 9 insertions(+), 13 deletions(-)

diff --git a/README.md b/README.md @@ -1,5 +1,6 @@ # running-tools -A collection of tools for runners that calculate splits, convert units, and more +A collection of tools for runners and their coaches that calculate splits, +predict race times, convert units, and more Try it out [here](https://ashermorgan.github.io/running-tools/) @@ -25,8 +26,3 @@ Build for production ``` npm run build ``` - -Deploy to GitHub Pages -``` -. scripts/deploy.sh -``` diff --git a/package.json b/package.json @@ -1,7 +1,7 @@ { "name": "running-tools", "version": "0.2.0", - "description": "A collection of tools for runners that calculate splits, convert units, and more", + "description": "A collection of tools for runners and their coaches that calculate splits, predict race times, convert units, and more", "private": true, "scripts": { "serve": "vue-cli-service serve", diff --git a/public/404.html b/public/404.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta name="description" content="A collection of tools for runners that calculate splits, convert units, and more"> + <meta name="description" content="A collection of tools for runners and their coaches that calculate splits, predict race times, convert units, and more"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>404 Not Found - Running Tools</title> diff --git a/public/index.html b/public/index.html @@ -5,11 +5,11 @@ <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> - <meta name="description" content="A collection of tools for runners that calculate splits, convert units, and more"> + <meta name="description" content="A collection of tools for runners and their coaches that calculate splits, predict race times, convert units, and more"> <title>Running Tools</title> <meta property="og:title" content="Running Tools"/> - <meta property="og:description" content="A collection of tools for runners that calculate splits, convert units, and more"/> + <meta property="og:description" content="A collection of tools for runners and their coaches that calculate splits, predict race times, convert units, and more"/> <meta property="og:type" content="website"/> <meta property="og:url" content="https://ashermorgan.github.io/running-tools/"/> <meta property="og:image" content="https://ashermorgan.github.io/running-tools/img/icons/open-graph-1280x640.png"/> diff --git a/src/views/Home.vue b/src/views/Home.vue @@ -1,7 +1,7 @@ <template> <div class="home"> <p class="description"> - A collection of tools for runners that calculate splits, convert units, and more + A collection of tools for runners and their coaches </p> <div class="calculators"> <router-link :to="{ name: 'calculate-paces' }" v-slot="{ navigate }" custom> @@ -32,12 +32,12 @@ export default { <style scoped> .home { text-align: center; - max-width: 500px; + max-width: 600px; margin: auto; } .description { font-size: 1.5em; - margin-bottom: 10px; + margin-bottom: 1em; } .calculators { display: flex;