Feat: Add Top bar while routing different different pages (#2298)

This commit is contained in:
Yash_1124
2024-01-30 17:52:17 +05:30
committed by GitHub
parent c0a4fd145c
commit 0a4dfaeaf9
4 changed files with 697 additions and 790 deletions

View File

@@ -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