Allow installing this app as a Web App (#419)

* added an icon of 512x512 for the manifest

* added a web app manifest

* added a screenshot for richer install on mobile

* added a screenshot for richer install ui on desktop

* added a document to include the manifest

* fixed the command to generate a better auth secret

* moved the link tag directly into the PageHead component
This commit is contained in:
Amin NAIRI
2026-03-10 23:13:58 +01:00
committed by GitHub
parent dfcdc5e47e
commit 400dcec56d
6 changed files with 41 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ export const PageHead = ({ title }: { title: string }) => {
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<link rel="manifest" href="/manifest.json" />
</Head>
);
};