'use client';

import type React                from "react"
import      { ProgressProvider } from '@bprogress/next/app';

export function Bprogress({ children }: { children: React.ReactNode }) {
  return (
    <ProgressProvider
      height="2px"
      color="#00a699"
      options={{ showSpinner: false }}
      shallowRouting
    >
      {children}
    </ProgressProvider>
  );
};
