We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c15a358 commit 2b15d24Copy full SHA for 2b15d24
1 file changed
src/pages/_app.js
@@ -1,11 +1,11 @@
1
-// pages/_app.js
2
import { QueryClient, QueryClientProvider } from "react-query";
3
import { ReactQueryDevtools } from "react-query/devtools";
4
import "tailwindcss/tailwind.css";
5
import "../styles/globals.css";
6
import "tailwind-scrollbar";
7
import Head from "next/head";
8
import Script from "next/script";
+import ProgressBar from "./components/ProgressBar"; // Import ProgressBar
9
10
const queryClient = new QueryClient();
11
@@ -31,6 +31,7 @@ function MyApp({ Component, pageProps }) {
31
gtag('js', new Date()); gtag('config', 'G-7CXJQ1G63J');
32
`}
33
</Script>
34
+ <ProgressBar /> {/* Global Progress Bar */}
35
<Component {...pageProps} />
36
<ReactQueryDevtools />
37
</QueryClientProvider>
0 commit comments