1
Fork 0
mirror of https://github.com/Steffo99/todocolors.git synced 2024-11-22 00:04:18 +00:00

Add manifest metadata field and manifest.json

This commit is contained in:
Steffo 2023-08-05 19:57:49 +02:00
parent 732d87c23e
commit 3d60ede6a2
Signed by: steffo
GPG key ID: 2A24051445686895
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{
"name": "Todoblue",
"short_name": "Todoblue",
"display": "standalone",
"background_color": "#0c193b",
"description": "Self-hostable multiplayer todo app"
}

View file

@ -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 }) {