-
- Sign in
-
-
+
diff --git a/apps/web/src/components/app-shell.tsx b/apps/web/src/components/app-shell.tsx
index 945b410..dcea32f 100644
--- a/apps/web/src/components/app-shell.tsx
+++ b/apps/web/src/components/app-shell.tsx
@@ -180,6 +180,30 @@ function Sidebar() {
);
}
+// ---------------------------------------------------------------------------
+// Bare header for unauthenticated routes (/login). No sidebar, no mobile
+// menu, no nav — just the centered brand mark + name. The user explicitly
+// asked for nothing else here so the sign-in screen feels like a separate
+// surface from the authenticated app.
+// ---------------------------------------------------------------------------
+function BareHeader() {
+ return (
+
+ );
+}
+
// ---------------------------------------------------------------------------
// AppShell — the outer container
// ---------------------------------------------------------------------------
@@ -188,6 +212,18 @@ interface AppShellProps {
}
export function AppShell({ children }: AppShellProps) {
+ const pathname = usePathname();
+ const isAuthRoute = pathname === "/login";
+
+ if (isAuthRoute) {
+ return (
+ <>
+
+
{children}
+ >
+ );
+ }
+
return (
<>
{/* Desktop sidebar */}