diff --git a/components/AnnouncementBar.tsx b/components/AnnouncementBar.tsx
index 839a438..70d72de 100644
--- a/components/AnnouncementBar.tsx
+++ b/components/AnnouncementBar.tsx
@@ -10,24 +10,22 @@ export default function AnnouncementBar({ toggleAnnouncementBar }: Props) {
{unescapeString(link.name || link.description) || link.url}
@@ -121,9 +127,9 @@ export default function LinkGrid({ link, count, className }: Props) {
href={link.url || ""}
target="_blank"
title={link.url || ""}
- className="w-fit hover:opacity-60 duration-100"
+ className="w-fit"
>
-
+
diff --git a/components/LinkViews/LinkComponents/LinkIcon.tsx b/components/LinkViews/LinkComponents/LinkIcon.tsx
index e5f7380..70101e9 100644
--- a/components/LinkViews/LinkComponents/LinkIcon.tsx
+++ b/components/LinkViews/LinkComponents/LinkIcon.tsx
@@ -20,25 +20,29 @@ export default function LinkIcon({
const [showFavicon, setShowFavicon] = React.useState
(true);
- return link.url && url && showFavicon ? (
- {
- setShowFavicon(false);
- }}
- />
- ) : showFavicon === false ? (
-
-
-
- ) : link.type === "pdf" ? (
-
- ) : link.type === "image" ? (
-
- ) : undefined;
+ return (
+ <>
+ {link.url && url && showFavicon ? (
+ {
+ setShowFavicon(false);
+ }}
+ />
+ ) : showFavicon === false ? (
+
+
+
+ ) : link.type === "pdf" ? (
+
+ ) : link.type === "image" ? (
+
+ ) : undefined}
+ >
+ );
}
diff --git a/components/LinkViews/LinkGrid.tsx b/components/LinkViews/LinkGrid.tsx
index ac8a31d..a9c4344 100644
--- a/components/LinkViews/LinkGrid.tsx
+++ b/components/LinkViews/LinkGrid.tsx
@@ -100,7 +100,12 @@ export default function LinkGrid({ link, count, className }: Props) {
) : undefined}
-
+
{}}
+ linkInfo={false}
+ link={link}
+ collection={collection}
+ />
);
}
diff --git a/components/LinkViews/LinkList.tsx b/components/LinkViews/LinkList.tsx
index 277201c..955e530 100644
--- a/components/LinkViews/LinkList.tsx
+++ b/components/LinkViews/LinkList.tsx
@@ -53,7 +53,7 @@ export default function LinkCardCompact({ link, count, className }: Props) {