init native nextjs pwa

This commit is contained in:
2025-08-16 09:21:32 -04:00
parent dadf518c2d
commit fefd0c47d6
4 changed files with 65 additions and 629 deletions

25
src/app/manifest.ts Normal file
View File

@@ -0,0 +1,25 @@
import type { MetadataRoute } from "next";
export default function manifest(): MetadataRoute.Manifest {
return {
name: "local-ical PWA",
short_name: "local-ical",
description: "Local iCal editor with AI features",
start_url: "/",
display: "standalone",
background_color: "#ffffff",
theme_color: "#000000",
icons: [
{
src: "/icon-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "/icon-512x512.png",
sizes: "512x512",
type: "image/png",
},
],
};
}