diff --git a/src/components/cards/VideoPromptsCard.tsx b/src/components/cards/VideoPromptsCard.tsx
index 05e1fdb..a8d05fc 100644
--- a/src/components/cards/VideoPromptsCard.tsx
+++ b/src/components/cards/VideoPromptsCard.tsx
@@ -2,7 +2,7 @@ import { useState } from "react";
import { ResultCard } from "../ResultCard";
import { CopyButton } from "../CopyButton";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import { faVideo, faUndo } from "@fortawesome/free-solid-svg-icons";
+import { faVideo, faUndo, faStar } from "@fortawesome/free-solid-svg-icons";
import { useAutoHeight } from "../../lib/useAutoHeight";
import {
NEGATIVE_VIDEO_PROMPT,
@@ -151,18 +151,30 @@ export function VideoPromptsCard({
{links && links.length > 0 && (
- {links.map((link, i) => (
-
- ))}
+ {links.map((link, i) => {
+ const isRecommended = Boolean(
+ current.tool_recommendation &&
+ current.tool_recommendation.toLowerCase().includes(link.name.toLowerCase())
+ );
+
+ return (
+
+ );
+ })}
)}