diff --git a/src/components/Hero.tsx b/src/components/Hero.tsx index 0508014..09f6843 100644 --- a/src/components/Hero.tsx +++ b/src/components/Hero.tsx @@ -151,7 +151,7 @@ export default function Hero() { @@ -170,6 +170,11 @@ export default function Hero() { toggleBookmarked(option); setBookmarkedToolPaths(getBookmarkedToolPaths()); }} + color={ + isBookmarked(option) + ? theme.palette.primary.main + : theme.palette.grey[500] + } icon={ isBookmarked(option) ? 'mdi:bookmark' @@ -185,6 +190,9 @@ export default function Hero() { } }} /> + {bookmarkedToolPaths.length > 0 && ( + Bookmarked tools: + )} {displayedTools.map((tool) => (