aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/pages/_app.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'docs/pages/_app.tsx')
-rw-r--r--docs/pages/_app.tsx47
1 files changed, 0 insertions, 47 deletions
diff --git a/docs/pages/_app.tsx b/docs/pages/_app.tsx
deleted file mode 100644
index fc61810..0000000
--- a/docs/pages/_app.tsx
+++ /dev/null
@@ -1,47 +0,0 @@
-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>
- );
-}