diff options
| author | Sebastien Castiel <sebastien@castiel.me> | 2023-12-06 12:39:54 -0500 |
|---|---|---|
| committer | Sebastien Castiel <sebastien@castiel.me> | 2023-12-06 12:39:54 -0500 |
| commit | c72311d01a827a61d6d3d786416ddb442076d73a (patch) | |
| tree | 131861ab1df1a0cb09ed52ead5ecde8edad6e997 /src/app/layout.tsx | |
| parent | 6c4ced0f79f801d85da5e4973ae4154f01b04dba (diff) | |
Better loading behavior
Diffstat (limited to 'src/app/layout.tsx')
| -rw-r--r-- | src/app/layout.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4a83b57..7694327 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,3 +1,4 @@ +import { ProgressBar } from '@/components/progress-bar' import type { Metadata } from 'next' import './globals.css' @@ -14,6 +15,7 @@ export default function RootLayout({ return ( <html lang="en"> <body> + <ProgressBar /> <div className="max-w-screen-md mx-auto p-4">{children}</div> </body> </html> |
