Skip to content

Commit 4176564

Browse files
committed
change layout page
1 parent b0c2e77 commit 4176564

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/app/layout.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { Bricolage_Grotesque, Geist, Geist_Mono } from "next/font/google";
33
import "./globals.css";
44
import NavBar from "@/components/NavBar";
55
import Footer from "@/components/Footer";
6+
import Loader from "@/components/Loader";
67

78
// Google Fonts with proper fallback
89
const bricolage = Bricolage_Grotesque({
@@ -34,10 +35,11 @@ export default function RootLayout({
3435
return (
3536
<html lang="en" className={bricolage.className}>
3637
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
38+
<Loader />
3739
<NavBar />
3840
{children}
3941
<Footer />
4042
</body>
4143
</html>
4244
);
43-
}
45+
}

0 commit comments

Comments
 (0)