* fix: add min width to dashboard * fix: display theme background and set dynamic viewport height * fix: prevent zooming on ios * fix: enable scroll on card page
14 lines
278 B
TypeScript
14 lines
278 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"
|
|
/>
|
|
</Head>
|
|
);
|
|
};
|