diff --git a/frontend/src/app/chat/nudges.tsx b/frontend/src/app/chat/nudges.tsx
index 0d713c89..c5929924 100644
--- a/frontend/src/app/chat/nudges.tsx
+++ b/frontend/src/app/chat/nudges.tsx
@@ -1,27 +1,46 @@
+import { motion, AnimatePresence } from "motion/react";
+
export default function Nudges({
nudges,
handleSuggestionClick,
}: {
nudges: string[];
+
handleSuggestionClick: (suggestion: string) => void;
}) {
return (
-
-
-
- {nudges.map((suggestion: string, index: number) => (
-
- ))}
-
- {/* Fade out gradient on the right */}
-
-
+
+
+ {nudges.length > 0 && (
+
+
+
+
+ {nudges.map((suggestion: string, index: number) => (
+
+ ))}
+
+ {/* Fade out gradient on the right */}
+
+
+
+
+ )}
+
);
}