-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
89 additions
and
23 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Hexy</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/x-icon" href="/static/favicon.png"> | ||
<link href="/static/style.css" rel="stylesheet"/> | ||
</head> | ||
<body> | ||
|
||
<div id="info" class="fixed inset-0 flex bg-black/20 justify-center items-center z-50"> | ||
<div id="info-inner" class="w-4/5 md:w-[50ch] bg-white/90 p-8 rounded-lg shadow-lg"> | ||
<div class="flex flex-col items-center mb-4"> | ||
<div class="flex items-center"> | ||
<img src="static/logo256.png" class="h-12 mr-4" alt="Hexy Logo"> | ||
<h2 class="text-2xl font-bold">Hexy</h2> | ||
</div> | ||
</div> | ||
<p class="my-4">Hexy is an app to help you explore your Strava and Garmin data on a single map, and sync between the two.</p> | ||
<p class="my-4">As a bonus, you get to fill out hexagons with every workout.</p> | ||
<p class="my-8 font-bold">Go to the <a class="font-bold text-blue-800" href="/">app</a>!</p> | ||
<p class="mt-4">You can have a look at the source code <a class="font-bold text-blue-800" href="https://github.com/carderne/hexy">here</a>.</p> | ||
<p class="mt-4">And the privacy policy <a class="font-bold text-blue-800" href="/privacy">here</a>.</p> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.