You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. 'use client'
  2. import { AppProgressBar as ProgressBar } from 'next-nprogress-bar'
  3. const Topbar = () => {
  4. return (
  5. <>
  6. <ProgressBar
  7. height='2px'
  8. color="#1C64F2FF"
  9. options={{ showSpinner: false }}
  10. shallowRouting />
  11. </>)
  12. }
  13. export default Topbar