19 lines
444 B
JavaScript
19 lines
444 B
JavaScript
import { Html, Head, Main, NextScript } from "next/document";
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html>
|
|
<Head>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Vazirmatn&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="shortcut icon" href="/parch.svg" type="image/svg+xml" />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|