File size: 1,119 Bytes
4ffd659
 
 
a3c0e30
 
4ffd659
 
 
 
 
 
 
 
 
 
 
 
a3c0e30
 
 
 
 
 
 
4ffd659
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import PlausibleProvider from "next-plausible"

import "@/styles/globals.css"
import Head from "next/head"
import Script from "next/script"

export default function App({ Component, pageProps }) {
  return (
    <PlausibleProvider
      domain="benchmarks.llmonitor.com"
      scriptProps={{
        src: "https://llmonitor.com/p/js/script.js",
        // @ts-ignore
        "data-api": "https://llmonitor.com/p/event",
      }}
      customDomain="benchmarks.llmonitor.com"
    >
      <Head>
        {/* Support embedding into HuggingFace */}
        <Script
          strategy="afterInteractive"
          src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/4.3.1/iframeResizer.contentWindow.min.js"
        />
      </Head>
      <Component {...pageProps} />
      <footer>
        <br />
        <p>
          Credit:{" "}
          <a href="https://twitter.com/vincelwt" target="_blank">
            @vincelwt
          </a>
        </p>

        <a href="https://llmonitor.com" className="llmonitor" target="_blank">
          by πŸ“ˆ llmonitor
        </a>
      </footer>
    </PlausibleProvider>
  )
}