summaryrefslogtreecommitdiff
path: root/src/app.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.html')
-rw-r--r--src/app.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/app.html b/src/app.html
new file mode 100644
index 0000000..3f56455
--- /dev/null
+++ b/src/app.html
@@ -0,0 +1,18 @@
+<!doctype html>
+<html lang="en">
+ <script>
+ var isBrave = (navigator.brave && await navigator.brave.isBrave()) || false;
+ if (isBrave) {
+ window.location.href = '/not-very-brave.html';
+ }
+ </script>
+ <head>
+ <meta charset="utf-8" />
+ <link rel="icon" href="%sveltekit.assets%/favicon.gif" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ %sveltekit.head%
+ </head>
+ <body data-sveltekit-preload-data="hover">
+ <div style="display: contents">%sveltekit.body%</div>
+ </body>
+</html>