Index: src/app/login/layout.tsx
===================================================================
--- src/app/login/layout.tsx	(revision 636f86cc03abcdbac548ce77903447c882c466e9)
+++ src/app/login/layout.tsx	(revision 636f86cc03abcdbac548ce77903447c882c466e9)
@@ -0,0 +1,14 @@
+import Header from "@/components/header";
+
+export default function LoginLayout({
+  children,
+}: {
+  children: React.ReactNode;
+}) {
+  return (
+    <>
+      <Header />
+      {children}
+    </>
+  );
+}
