From 41131572b958a2e6e5b5afd75fc93f82998c1afa Mon Sep 17 00:00:00 2001
From: Jainam maru <157703342+Dev9269@users.noreply.github.com>
Date: Thu, 16 Jul 2026 00:36:50 +0530
Subject: [PATCH] Add web app manifest for PWA support
---
index.html | 1 +
public/manifest.json | 16 ++++++++++++++++
2 files changed, 17 insertions(+)
create mode 100644 public/manifest.json
diff --git a/index.html b/index.html
index 5a88fc8..2bb8391 100644
--- a/index.html
+++ b/index.html
@@ -13,6 +13,7 @@
+
diff --git a/public/manifest.json b/public/manifest.json
new file mode 100644
index 0000000..5ec7d66
--- /dev/null
+++ b/public/manifest.json
@@ -0,0 +1,16 @@
+{
+ "name": "Jainam Maru Portfolio",
+ "short_name": "JHM Portfolio",
+ "description": "Cybersecurity engineer and full-stack developer portfolio",
+ "start_url": "/portfolio/",
+ "display": "standalone",
+ "background_color": "#050505",
+ "theme_color": "#050505",
+ "icons": [
+ {
+ "src": "profile.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ }
+ ]
+}