From b347ca9ceab11c23eaf48585c54e9030536dc99a Mon Sep 17 00:00:00 2001 From: robalb <11277482+robalb@users.noreply.github.com> Date: Sun, 10 Nov 2024 15:58:51 +0100 Subject: [PATCH] seo --- svelte_blinkenweb/index.html | 4 ++-- svelte_blinkenweb/public/robots.txt | 3 +++ svelte_blinkenweb/public/site.webmanifest | 13 ++++++++++++- 3 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 svelte_blinkenweb/public/robots.txt diff --git a/svelte_blinkenweb/index.html b/svelte_blinkenweb/index.html index f70e9d2..d0abdaa 100644 --- a/svelte_blinkenweb/index.html +++ b/svelte_blinkenweb/index.html @@ -13,14 +13,14 @@ x86-64 playground - + - + diff --git a/svelte_blinkenweb/public/robots.txt b/svelte_blinkenweb/public/robots.txt new file mode 100644 index 0000000..297e070 --- /dev/null +++ b/svelte_blinkenweb/public/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Allow: / + diff --git a/svelte_blinkenweb/public/site.webmanifest b/svelte_blinkenweb/public/site.webmanifest index 2dd8b90..078de71 100644 --- a/svelte_blinkenweb/public/site.webmanifest +++ b/svelte_blinkenweb/public/site.webmanifest @@ -1,6 +1,8 @@ { + "id": "playground/v1" "name": "x64 playground", "short_name": "x64", + "description": "An online assembly editor and debugger for the x86-64 architecture. The quickest way to run, debug, and share assembly snippets for a wide range of amd64 assemblers - GNU binutils, Fasm, Nasm", "icons": [ { "src": "/web-app-manifest-192x192.png", @@ -15,7 +17,16 @@ "purpose": "maskable" } ], + "screenshots": [ + { + "src": "/card.jpg", + "sizes": "1760x1070", + "label": "Screenshot showing a web app composed of multiple panes with a dark theme. The leftmost pane is a text editor showing an assembly code snippet. the other panes show debugger data like registers and a hexdump of the stack layout of a process." + + } + ], "theme_color": "#343434", + "categories": ["education", "programming"], "background_color": "#1c1e24", "display": "standalone" -} \ No newline at end of file +}