Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
TeamTonic
/
here.chat
like
0
Sleeping
App
Files
Files
Community
e831a1d
here.chat
/
src
/
pages
/
_document.tsx
faranbutt789
Pushing Frontend Code
8e40013
about 1 year ago
raw
Copy download link
history
blame
Safe
231 Bytes
import
{
Html
,
Head
,
Main
,
NextScript
}
from
'next/document'
export
default
function
Document
(
) {
return
(
<
Html
lang
=
"en"
>
<
Head
/>
<
body
>
<
Main
/>
<
NextScript
/>
</
body
>
</
Html
>
)
}