"use client";

import { AppProgressBar as ProgressBar } from "next-nprogress-bar";

const Providers = ({ children }: any) => {
  return (
    <>
      {children}
      <ProgressBar
        height="4px"
        color="#8f0029"
        options={{ showSpinner: false }}
        shallowRouting
        startPosition={0.3}
      />
    </>
  );
};

export default Providers;
