From 6dbc116704a4025e380e4cd0b0045f3ef7d2a3c7 Mon Sep 17 00:00:00 2001 From: v0 Date: Sun, 8 Feb 2026 23:30:24 +0000 Subject: [PATCH] feat: enable PWA with icons, service worker, and touch icons\n\nAdd PWA icons, service worker, and Apple touch icons for standalone app experience --- .gitignore | 3 +- app/layout.tsx | 14 +++++++++ public/icons/icon-192.jpg | Bin 0 -> 34443 bytes public/icons/icon-512.jpg | Bin 0 -> 31025 bytes public/manifest.json | 11 ++++--- public/sw.js | 61 ++++++++++++++++++++++++++++++++++++++ 6 files changed, 84 insertions(+), 5 deletions(-) create mode 100644 public/icons/icon-192.jpg create mode 100644 public/icons/icon-512.jpg create mode 100644 public/sw.js diff --git a/.gitignore b/.gitignore index fe447fb..d58693a 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,5 @@ instrumentation-client.ts node_modules/ .next/ .env*.local -.DS_Store \ No newline at end of file +.DS_Store +.vercel diff --git a/app/layout.tsx b/app/layout.tsx index 8c3207a..002696a 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -37,10 +37,24 @@ export default function RootLayout({ }>) { return ( + + + {children} +