diff --git a/todoblue/public/manifest.json b/todoblue/public/manifest.json new file mode 100644 index 0000000..6437488 --- /dev/null +++ b/todoblue/public/manifest.json @@ -0,0 +1,7 @@ +{ + "name": "Todoblue", + "short_name": "Todoblue", + "display": "standalone", + "background_color": "#0c193b", + "description": "Self-hostable multiplayer todo app" +} diff --git a/todoblue/src/app/layout.tsx b/todoblue/src/app/layout.tsx index 0f9073c..546e1ec 100644 --- a/todoblue/src/app/layout.tsx +++ b/todoblue/src/app/layout.tsx @@ -16,6 +16,7 @@ export const metadata: NextMetadata = { viewport: {initialScale: 1, width: "device-width", userScalable: false}, creator: "Steffo", robots: "noindex, nofollow", + manifest: "manifest.json", } export default function layout({children}: { children: ReactNode }) {