diff --git a/@xen-orchestra/lite/CHANGELOG.md b/@xen-orchestra/lite/CHANGELOG.md
index d1348c651..9fa68b1d2 100644
--- a/@xen-orchestra/lite/CHANGELOG.md
+++ b/@xen-orchestra/lite/CHANGELOG.md
@@ -3,6 +3,7 @@
## **next**
- Fix Typescript typings errors when running `yarn type-check` command (PR [#7278](https://github.com/vatesfr/xen-orchestra/pull/7278))
+- Introduce PWA Json Manifest (PR [#7291](https://github.com/vatesfr/xen-orchestra/pull/7291))
## **0.1.7** (2023-12-28)
diff --git a/@xen-orchestra/lite/index.html b/@xen-orchestra/lite/index.html
index 34cc08317..fb751caed 100644
--- a/@xen-orchestra/lite/index.html
+++ b/@xen-orchestra/lite/index.html
@@ -3,6 +3,7 @@
+
XO Lite
diff --git a/@xen-orchestra/lite/public/favicon.svg b/@xen-orchestra/lite/public/favicon.svg
new file mode 100644
index 000000000..05b239735
--- /dev/null
+++ b/@xen-orchestra/lite/public/favicon.svg
@@ -0,0 +1 @@
+
diff --git a/@xen-orchestra/lite/public/manifest.webmanifest b/@xen-orchestra/lite/public/manifest.webmanifest
new file mode 100644
index 000000000..135d96b45
--- /dev/null
+++ b/@xen-orchestra/lite/public/manifest.webmanifest
@@ -0,0 +1,14 @@
+{
+ "name": "XO Lite",
+ "short_name": "XOLite",
+ "start_url": "/",
+ "display": "standalone",
+ "description": "Integrated local and lightweight solution to manage a local XCP-ng pool.",
+ "icons": [
+ {
+ "src": "favicon.svg",
+ "sizes": "any",
+ "type": "image/svg+xml"
+ }
+ ]
+}