- {/* Logo */}
+
+ {/* Row 1 (mobile): Logo + Auth */}
+
@@ -55,8 +55,29 @@ export function Header({ onSignInClick }: HeaderProps) {
- {/* Navigation */}
-
+
+ {/* Row 2 (mobile): Nav + Auth (desktop) */}
+
+
-
- {/* Auth */}
-
- {isAuthEnabled && !loading && (
- <>
- {user ? (
-
- ) : (
-
- )}
- >
- )}
+ {/* Auth — visible on desktop only */}
+
+ {isAuthEnabled && !loading && (
+ <>
+ {user ? (
+
+ ) : (
+
+ )}
+ >
+ )}
+
diff --git a/apps/kitchen_mate/frontend/src/components/SavedRecipeView.tsx b/apps/kitchen_mate/frontend/src/components/SavedRecipeView.tsx
index 41725c8..b3aec0e 100644
--- a/apps/kitchen_mate/frontend/src/components/SavedRecipeView.tsx
+++ b/apps/kitchen_mate/frontend/src/components/SavedRecipeView.tsx
@@ -272,59 +272,57 @@ export function SavedRecipeView() {
{/* Header with title and actions */}
-
-
-
{recipe.title}
-
- {userRecipe.is_modified && (
-
- Modified from original
-
- )}
-
-
-
- {id &&
}
- {id &&
}
-
{/* Source URL */}
@@ -468,7 +466,7 @@ export function SavedRecipeView() {
{/* Footer */}
-