Skip to content

Commit dc4d582

Browse files
Sanity (#203)
* feat(Blog):fix for clickable link in post details, fix for author details * feat(Blog):refactoring after removing author modal * feat(Blog): fix unified date format * feat(Blog): Fix for click-outside-to-close search, recommended posts are limited to 3 * feat(Blog): selectedAuthorData fixed * feat(Blog): Added description for /blog/[slug] metadata, Added Schema.org JSON‑LD for Article (BlogPosting) and BreadcrumbList , Added <time datetime> tags where blog dates renders * feat(Blog): fix hover social links, fixed duplication not found search
1 parent 09131de commit dc4d582

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

frontend/components/blog/BlogFilters.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ export default function BlogFilters({
423423
href={item.url}
424424
target="_blank"
425425
rel="noopener noreferrer"
426-
className="inline-flex items-center rounded-full border border-gray-200 px-3 py-1 text-xs text-gray-600 transition hover:text-[var(--accent-primary)] dark:border-gray-700 dark:text-gray-300"
426+
className="inline-flex items-center rounded-full border border-gray-200 px-3 py-1 text-xs text-gray-600 transition hover:text-[var(--accent-primary)] hover:border-[var(--accent-primary)] dark:border-gray-700 dark:text-gray-300 dark:hover:text-[var(--accent-primary)] dark:hover:border-[var(--accent-primary)]"
427427
>
428428
{item.platform || 'link'}
429429
</a>
@@ -494,10 +494,6 @@ export default function BlogFilters({
494494
disableHoverColor
495495
/>
496496
</div>
497-
498-
{!filteredPosts.length && (
499-
<p className="text-center text-gray-500 mt-10">{t('noPosts')}</p>
500-
)}
501497
</div>
502498
);
503499
}

0 commit comments

Comments
 (0)