feat: enable PWA with icons, service worker, and touch icons\n\nAdd PWA icons, service worker, and Apple touch icons for standalone app experience

This commit is contained in:
v0 2026-02-08 23:30:24 +00:00
parent be9798cfa5
commit 6dbc116704
6 changed files with 84 additions and 5 deletions

1
.gitignore vendored
View File

@ -10,3 +10,4 @@ node_modules/
.next/ .next/
.env*.local .env*.local
.DS_Store .DS_Store
.vercel

View File

@ -37,10 +37,24 @@ export default function RootLayout({
}>) { }>) {
return ( return (
<html lang="de"> <html lang="de">
<head>
<link rel="apple-touch-icon" href="/icons/icon-192.jpg" />
</head>
<body <body
className={`${inter.variable} ${spaceGrotesk.variable} font-sans antialiased`} className={`${inter.variable} ${spaceGrotesk.variable} font-sans antialiased`}
> >
{children} {children}
<script
dangerouslySetInnerHTML={{
__html: `
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js')
})
}
`,
}}
/>
</body> </body>
</html> </html>
) )

BIN
public/icons/icon-192.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
public/icons/icon-512.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -3,20 +3,23 @@
"short_name": "InFocus", "short_name": "InFocus",
"description": "Teile deine Filmerlebnisse mit deiner Familie", "description": "Teile deine Filmerlebnisse mit deiner Familie",
"start_url": "/feed", "start_url": "/feed",
"scope": "/",
"display": "standalone", "display": "standalone",
"background_color": "#111318", "background_color": "#111318",
"theme_color": "#111318", "theme_color": "#111318",
"orientation": "portrait-primary", "orientation": "portrait-primary",
"icons": [ "icons": [
{ {
"src": "/icons/icon-192.png", "src": "/icons/icon-192.jpg",
"sizes": "192x192", "sizes": "192x192",
"type": "image/png" "type": "image/jpeg",
"purpose": "any"
}, },
{ {
"src": "/icons/icon-512.png", "src": "/icons/icon-512.jpg",
"sizes": "512x512", "sizes": "512x512",
"type": "image/png" "type": "image/jpeg",
"purpose": "any"
} }
] ]
} }

61
public/sw.js Normal file
View File

@ -0,0 +1,61 @@
const CACHE_NAME = "infocus-v1"
const PRECACHE_URLS = ["/feed", "/search", "/diary", "/lists", "/profile"]
self.addEventListener("install", (event) => {
event.waitUntil(
caches.open(CACHE_NAME).then((cache) => cache.addAll(PRECACHE_URLS))
)
self.skipWaiting()
})
self.addEventListener("activate", (event) => {
event.waitUntil(
caches.keys().then((keys) =>
Promise.all(
keys.filter((key) => key !== CACHE_NAME).map((key) => caches.delete(key))
)
)
)
self.clients.claim()
})
self.addEventListener("fetch", (event) => {
// Network-first strategy for API calls
if (event.request.url.includes("/api/")) {
event.respondWith(
fetch(event.request).catch(() => caches.match(event.request))
)
return
}
// Cache-first for static assets (images, fonts, etc.)
if (
event.request.destination === "image" ||
event.request.destination === "font" ||
event.request.destination === "style"
) {
event.respondWith(
caches.match(event.request).then(
(cached) =>
cached ||
fetch(event.request).then((response) => {
const clone = response.clone()
caches.open(CACHE_NAME).then((cache) => cache.put(event.request, clone))
return response
})
)
)
return
}
// Network-first for HTML pages
event.respondWith(
fetch(event.request)
.then((response) => {
const clone = response.clone()
caches.open(CACHE_NAME).then((cache) => cache.put(event.request, clone))
return response
})
.catch(() => caches.match(event.request))
)
})