fix email address

master
Peter Babič 2 years ago
parent 4a3d60d196
commit 1993acd3c6
Signed by: peter.babic
GPG Key ID: 4BB075BC1884BA40
  1. 55
      src/Components/About.svelte

@ -4,6 +4,32 @@
export let hidden
</script>
{#if hidden}
<div class="relative">
<div
class="absolute z-10 rounded text-blue-darker text-left bg-white"
on:click={() => (hidden = false)}
transition:fade
>
<h1>Triangles.fun</h1>
A game. Leave only a single dot to win. Eliminate other dots by jumping
them over!
<h2>Instructions</h2>
Click or touch the dot. If the dot can jump, it becomes lighter and the
spots where it can land become darker. Perform jump by touching or clicking
on the darker spot.
<h2>Installation</h2>
This game can be installed into your device. Look for "Add to Home Screen"
in the browser tab menu.
<h2>Support</h2>
You can send me your feedback or complains via
<a on:click|stopPropagation href="mailto:peter@peterbabic.dev"
>peter@peterbabic.dev</a
>. Have fun!
</div>
</div>
{/if}
<style>
* {
@apply text-sm;
@ -19,32 +45,3 @@
@apply font-bold mt-2;
}
</style>
{#if hidden}
<div class="relative">
<div
class="absolute z-10 rounded text-blue-darker text-left bg-white"
on:click={() => (hidden = false)}
transition:fade>
<h1>Triangles.fun</h1>
A game. Leave only a single dot to win. Eliminate other dots by
jumping them over!
<h2>Instructions</h2>
Click or touch the dot. If the dot can jump, it becomes lighter and
the spots where it can land become darker. Perform jump by touching
or clicking on the darker spot.
<h2>Installation</h2>
This game can be installed into your device. Look for "Add to Home
Screen" in the browser tab menu.
<h2>Support</h2>
You can send me your feedback or complains via
<a
on:click|stopPropagation
href="mailto:peter@triangles.fun">peter@triangles.fun</a>
and help me keep this game running via
<a
on:click|stopPropagation
href="https://www.buymeacoffee.com/peterbabic">Buy Me a Coffee.</a>
</div>
</div>
{/if}

Loading…
Cancel
Save