Changed the navbar

This commit is contained in:
2026-02-21 19:16:48 +05:30
parent 63d3a88ae5
commit 243ab9e073
5 changed files with 68 additions and 17 deletions

16
app/(pages)/layout.tsx Normal file
View File

@@ -0,0 +1,16 @@
import Navbar from "../components/Navbar";
import Footer from "../components/Footer";
export default function PagesLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<Navbar />
{children}
<Footer />
</>
);
}