diff --git a/components/links-content.tsx b/components/links-content.tsx index 382845f..3917507 100644 --- a/components/links-content.tsx +++ b/components/links-content.tsx @@ -159,29 +159,7 @@ export function LinksContent() {
{TOP_ICON_LINKS.map((item) => { const href = item.id === "cv" ? `/resume-${locale}.pdf` : item.href; - const isStaticOrExternal = item.external || item.id === "rss" || item.id === "cv"; - const CardContent = ( - -
- - - -
- - {tNav.has(item.id) ? tNav(item.id) : item.label} - - - {formatHref(href)} - -
-
-
- ); - - return isStaticOrExternal ? ( + return ( - {CardContent} + +
+ + + +
+ + {tNav.has(item.id) ? tNav(item.id) : item.label} + + + {formatHref(href)} + +
+
+
- ) : ( - - {CardContent} - ); })}