mirror of
https://github.com/guilhermewerner/image-caption-api
synced 2025-06-16 06:55:05 +00:00
Update api and add website
This commit is contained in:
17
src/pages/_document.tsx
Normal file
17
src/pages/_document.tsx
Normal file
@ -0,0 +1,17 @@
|
||||
import { Html, Head, Main, NextScript } from 'next/document'
|
||||
|
||||
export default function Document() {
|
||||
return (
|
||||
<Html lang="en">
|
||||
<Head>
|
||||
<meta charSet='utf-8' />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
</Head>
|
||||
<body>
|
||||
<Main />
|
||||
<NextScript />
|
||||
</body>
|
||||
</Html>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user