fix(docs): bump next.js version & fix meta warnings (#4327)

* chore(docs): bump `next` version

* docs: fix meta warnings
This commit is contained in:
Kamil Moskała
2024-12-10 19:46:55 +01:00
committed by GitHub
parent 1033c9d4f3
commit 7b4bd9a016
7 changed files with 28 additions and 20 deletions

14
docs/pages/_app.mdx Normal file
View File

@@ -0,0 +1,14 @@
import {orbitron} from '../font';
export default function Nextra({Component, pageProps}) {
return (
<>
<style jsx global>{`
:root {
--font-orbitron: ${orbitron.style.fontFamily};
}
`}</style>
<Component {...pageProps} />
</>
);
}