Spaces:
Build error
Build error
Move out of Head
Browse files- pages/_app.js +7 -8
pages/_app.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import PlausibleProvider from "next-plausible"
|
| 2 |
|
| 3 |
import "@/styles/globals.css"
|
| 4 |
-
|
| 5 |
import Script from "next/script"
|
| 6 |
|
| 7 |
export default function App({ Component, pageProps }) {
|
|
@@ -15,13 +15,6 @@ export default function App({ Component, pageProps }) {
|
|
| 15 |
}}
|
| 16 |
customDomain="benchmarks.llmonitor.com"
|
| 17 |
>
|
| 18 |
-
<Head>
|
| 19 |
-
{/* Support embedding into HuggingFace */}
|
| 20 |
-
<Script
|
| 21 |
-
strategy="afterInteractive"
|
| 22 |
-
src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.1/iframeResizer.contentWindow.min.js"
|
| 23 |
-
/>
|
| 24 |
-
</Head>
|
| 25 |
<Component {...pageProps} />
|
| 26 |
<footer>
|
| 27 |
<br />
|
|
@@ -35,6 +28,12 @@ export default function App({ Component, pageProps }) {
|
|
| 35 |
<a href="https://llmonitor.com" className="llmonitor" target="_blank">
|
| 36 |
by π llmonitor
|
| 37 |
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
</footer>
|
| 39 |
</PlausibleProvider>
|
| 40 |
)
|
|
|
|
| 1 |
import PlausibleProvider from "next-plausible"
|
| 2 |
|
| 3 |
import "@/styles/globals.css"
|
| 4 |
+
|
| 5 |
import Script from "next/script"
|
| 6 |
|
| 7 |
export default function App({ Component, pageProps }) {
|
|
|
|
| 15 |
}}
|
| 16 |
customDomain="benchmarks.llmonitor.com"
|
| 17 |
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
<Component {...pageProps} />
|
| 19 |
<footer>
|
| 20 |
<br />
|
|
|
|
| 28 |
<a href="https://llmonitor.com" className="llmonitor" target="_blank">
|
| 29 |
by π llmonitor
|
| 30 |
</a>
|
| 31 |
+
|
| 32 |
+
{/* Support embedding into HuggingFace */}
|
| 33 |
+
<Script
|
| 34 |
+
strategy="afterInteractive"
|
| 35 |
+
src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.1/iframeResizer.contentWindow.min.js"
|
| 36 |
+
/>
|
| 37 |
</footer>
|
| 38 |
</PlausibleProvider>
|
| 39 |
)
|