blob: fc6181049ad4b19ece3512485a8dcdb32fafefe2 (
plain) (
blame)
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
43
44
45
46
47
|
import "../styles.css";
import "../custom.css";
import { SSRProvider } from "@react-aria/ssr";
import type { AppProps } from "next/app";
import type { ReactNode } from "react";
import { Analytics } from "@vercel/analytics/react";
type NextraAppProps = AppProps & {
Component: AppProps["Component"] & {
getLayout: (page: ReactNode) => ReactNode;
};
};
// Shim requestIdleCallback in Safari
if (typeof window !== "undefined" && !("requestIdleCallback" in window)) {
window.requestIdleCallback = (fn) => setTimeout(fn, 1);
window.cancelIdleCallback = (e) => clearTimeout(e);
}
export default function Nextra({ Component, pageProps }: NextraAppProps) {
return (
<SSRProvider>
<>
{/**
* Globally defined svg linear gradient, for use in icons
*/}
<svg height="0px" width="0px">
<defs>
<linearGradient
id="pink-gradient"
x1="0%"
y1="0%"
x2="100%"
y2="100%"
>
<stop offset="0%" stopColor="rgba(156, 81, 161, 1)" />
<stop offset="70%" stopColor="rgba(255, 30, 86, 1)" />
</linearGradient>
</defs>
</svg>
</>
<Component {...pageProps} />
<Analytics />
</SSRProvider>
);
}
|