diff --git a/index.html b/index.html
index e4359ed..c353813 100644
--- a/index.html
+++ b/index.html
@@ -6,6 +6,7 @@
 	<link rel="icon" id="favicon">
 	<link rel="stylesheet" type="text/css" href="css/main.css">
 	<script src="js/main.js" type="module"></script>
+	<link rel="manifest" href="manifest.json" />
 </head>
 <body>
 	<div id="background"></div>
diff --git a/public/manifest.json b/public/manifest.json
new file mode 100644
index 0000000..71adbc6
--- /dev/null
+++ b/public/manifest.json
@@ -0,0 +1,14 @@
+{
+	"name": "honey",
+	"short_name": "honey",
+	"description": "Nice and sweet place for all your self-hosted services",
+	"start_url": "/",
+	"background_color": "#000",
+	"display": "standalone",
+	"icons": [
+		{
+			"src": "img/icon.png",
+			"sizes": "192x192 256x256 512x512"
+		}
+	]
+}