Better loading behavior

This commit is contained in:
Sebastien Castiel
2023-12-06 12:39:54 -05:00
parent 6c4ced0f79
commit c72311d01a
13 changed files with 144 additions and 127 deletions

View File

@@ -0,0 +1,13 @@
'use client'
import { Next13ProgressBar } from 'next13-progressbar'
export function ProgressBar() {
return (
<Next13ProgressBar
height="2px"
color="#64748b"
options={{ showSpinner: true }}
showOnShallow
/>
)
}