first commit
BIN
src-frontend/public/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
1
src-frontend/public/config.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
// env variables will be added here via supervisord
|
||||
3
src-frontend/public/credits.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
running.jpg - Image by <a href="https://pixabay.com/users/fotorech-5554393/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=4782722">Daniel Reche</a> from <a href="https://pixabay.com//?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=4782722">Pixabay</a>
|
||||
profile.png - Image by <a href="https://pixabay.com/users/raphaelsilva-4702998/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=3814049">Raphael Silva</a> from <a href="https://pixabay.com//?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=3814049">Pixabay</a>
|
||||
favicon.ico,apple-touch-icon.png,favicon-[X]x[Y].png - <a href="https://www.flaticon.com/free-icons/trophy" title="trophy icons">Trophy icons created by Maan Icons - Flaticon</a>
|
||||
BIN
src-frontend/public/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 554 B |
BIN
src-frontend/public/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 936 B |
BIN
src-frontend/public/favicon.ico
Normal file
|
After Width: | Height: | Size: 936 B |
BIN
src-frontend/public/how_to_screen_1.png
Normal file
|
After Width: | Height: | Size: 194 KiB |
BIN
src-frontend/public/how_to_screen_2.png
Normal file
|
After Width: | Height: | Size: 201 KiB |
BIN
src-frontend/public/how_to_screen_3.png
Normal file
|
After Width: | Height: | Size: 197 KiB |
BIN
src-frontend/public/how_to_screen_4.png
Normal file
|
After Width: | Height: | Size: 198 KiB |
BIN
src-frontend/public/how_to_screen_5.png
Normal file
|
After Width: | Height: | Size: 197 KiB |
BIN
src-frontend/public/how_to_screen_6.png
Normal file
|
After Width: | Height: | Size: 199 KiB |
BIN
src-frontend/public/how_to_strava_sync.png
Normal file
|
After Width: | Height: | Size: 184 KiB |
44
src-frontend/public/index.html
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<meta name="theme-color" content="#000000"/>
|
||||
<meta name="description" content="Compete with friends and coworkers across devices using the metrics you want respecting your privacy."/>
|
||||
<link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-32x32.png" sizes="32x32"/>
|
||||
<link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-16x16.png" sizes="16x16"/>
|
||||
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"/>
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/apple-touch-icon.png"/>
|
||||
<!--
|
||||
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="%PUBLIC_URL%/manifest.json"/>
|
||||
<script src="%PUBLIC_URL%/config.js"></script>
|
||||
<!--
|
||||
Notice the use of %PUBLIC_URL% in the tags above.
|
||||
It will be replaced with the URL of the `public` folder during the build.
|
||||
Only files inside the `public` folder can be referenced from the HTML.
|
||||
|
||||
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<title>Workout Challenge</title>
|
||||
</head>
|
||||
<body class="bg-gray-100 dark:bg-gray-900 ">
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
<!--
|
||||
This HTML file is a template.
|
||||
If you open it directly in the browser, you will see an empty page.
|
||||
|
||||
You can add webfonts, meta tags, or analytics to this file.
|
||||
The build step will place the bundled scripts into the <body> tag.
|
||||
|
||||
To begin the development, run `npm start` or `yarn start`.
|
||||
To create a production bundle, use `npm run build` or `yarn build`.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
||||
20
src-frontend/public/manifest.json
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"short_name": "Workout Challenge",
|
||||
"name": "Compete with friends and coworkers across devices using the metrics you want respecting your privacy.",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.ico",
|
||||
"sizes": "64x64 32x32 24x24 16x16",
|
||||
"type": "image/x-icon"
|
||||
},
|
||||
{
|
||||
"src": "apple-touch-icon.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#000000",
|
||||
"background_color": "#ffffff"
|
||||
}
|
||||
BIN
src-frontend/public/profile.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
3
src-frontend/public/robots.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# https://www.robotstxt.org/robotstxt.html
|
||||
User-agent: *
|
||||
Disallow:
|
||||
BIN
src-frontend/public/running.jpg
Normal file
|
After Width: | Height: | Size: 326 KiB |
BIN
src-frontend/public/running.webp
Normal file
|
After Width: | Height: | Size: 291 KiB |
BIN
src-frontend/public/running_email.jpg
Normal file
|
After Width: | Height: | Size: 143 KiB |
BIN
src-frontend/public/strava_logo.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |