Add header component with responsive navigation

This commit is contained in:
2026-01-25 02:32:33 +01:00
parent 7d9bd43102
commit c97393c751
14 changed files with 1363 additions and 75 deletions

14
app/(backend)/layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
import Header from "@/components/Header";
const Layout = ({ children }: { children: React.ReactNode }) => {
return (
<main className="min-h-screen text-gray-400">
<Header />
<div className="container py-10">
{children}
</div>
</main>
)
}
export default Layout;