* 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
15 lines
330 B
TypeScript
15 lines
330 B
TypeScript
import Head from "next/head";
|
|
|
|
export const PageHead = ({ title }: { title: string }) => {
|
|
return (
|
|
<Head>
|
|
<title>{title}</title>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1"
|
|
/>
|
|
<link rel="manifest" href="/manifest.json" />
|
|
</Head>
|
|
);
|
|
};
|