Feat: Add Top bar while routing different different pages (#2298)
parent
c0a4fd145c
commit
0a4dfaeaf9
@ -0,0 +1,16 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import { AppProgressBar as ProgressBar } from 'next-nprogress-bar'
|
||||||
|
|
||||||
|
const Topbar = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<ProgressBar
|
||||||
|
height='2px'
|
||||||
|
color="#1C64F2FF"
|
||||||
|
options={{ showSpinner: false }}
|
||||||
|
shallowRouting />
|
||||||
|
</>)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Topbar
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue