summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-05-27 14:58:20 -0500
committersanine <sanine.not@pm.me>2022-05-27 14:58:20 -0500
commitf530261f31905e8e51396c080165b6fc0da386fa (patch)
tree699c93de503a19f562231faa30697e07390d8c5a
parente2799cb092359038374cde25eb691d667b309383 (diff)
add favicon
-rw-r--r--README.md2
-rw-r--r--favicon.pngbin0 -> 215666 bytes
-rw-r--r--index.html23
3 files changed, 25 insertions, 0 deletions
diff --git a/README.md b/README.md
index 72d09e1..e453e89 100644
--- a/README.md
+++ b/README.md
@@ -30,6 +30,8 @@ I've used [rhill's Javascript-Voronoi] algorithm in performing terrain generatio
The terrain and mapping algorithms were very heavily inspired by mewo2's Uncharted Atlas, which has an [excellent explanatory page].
+The blue rose favicon image was adapted from a CC-BY-NC-SA [image by rosipaw].
[rhill's Javascript-Voronoi`]: https://github.com/gorhill/Javascript-Voronoi/
[excellent explanatory page]: https://mewo2.com/notes/terrain/
+[image by rosipaw]: https://wordpress.org/openverse/image/97e93986-b710-4920-bd1f-4b62176c5ded
diff --git a/favicon.png b/favicon.png
new file mode 100644
index 0000000..181d8ea
--- /dev/null
+++ b/favicon.png
Binary files differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..ce0739c
--- /dev/null
+++ b/index.html
@@ -0,0 +1,23 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device.width, initial-scale=1">
+ <link rel="shortcut icon" href="favicon.png">
+ <title>bluerose</title>
+ <style>
+ body {
+ font-family: monospace;
+ background-color: #333;
+ color: white;
+ }
+ </style>
+ <script type="module" src="main.js"></script>
+ </head>
+ <body style="margin: 0; padding: 0; overflow: hidden">
+ <div id="root"></div>
+ <noscript>
+ <h1>You need Javascript enabled to use this site</h1>
+ </noscript>
+ </body>
+</html>