Add apple-mobile-web-app meta tags (#29)
This commit is contained in:
parent
dd439bb4a8
commit
61384fa685
|
@ -3,7 +3,10 @@ import { Html, Head, Main, NextScript } from 'next/document'
|
||||||
export default function Document() {
|
export default function Document() {
|
||||||
return (
|
return (
|
||||||
<Html lang="en">
|
<Html lang="en">
|
||||||
<Head />
|
<Head>
|
||||||
|
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
||||||
|
<meta name="apple-mobile-web-app-title" content="Chatbot UI"></meta>
|
||||||
|
</Head>
|
||||||
<body>
|
<body>
|
||||||
<Main />
|
<Main />
|
||||||
<NextScript />
|
<NextScript />
|
||||||
|
|
Loading…
Reference in New Issue