mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-31 23:16:54 +00:00
check
This commit is contained in:
@@ -14,34 +14,30 @@ const TagGroups = ({ tags, className }) => {
|
||||
if (!tags) return <></>
|
||||
|
||||
return (
|
||||
<div id="tags-group" className="dark:border-gray-700 space-y-2">
|
||||
{tags.map((tag, index) => {
|
||||
const selected = currentTag === tag.name
|
||||
return (
|
||||
<Link
|
||||
passHref
|
||||
key={index}
|
||||
href={`/tag/${encodeURIComponent(tag.name)}`}
|
||||
className={'cursor-pointer inline-block whitespace-nowrap'}
|
||||
>
|
||||
<div
|
||||
className={`${className || ''}
|
||||
${selected ? 'text-white bg-blue-600 dark:bg-yellow-600' : ''}
|
||||
flex items-center hover:bg-blue-600 dark:hover:bg-yellow-600 hover:scale-110 hover:text-white rounded-lg px-2 py-0.5 duration-150 transition-all`}
|
||||
>
|
||||
<div className="text-lg">{tag.name} </div>
|
||||
{tag.count
|
||||
? (
|
||||
<sup className="relative ml-1">{tag.count}</sup>
|
||||
)
|
||||
: (
|
||||
<></>
|
||||
)}
|
||||
</div>
|
||||
</Link>
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
<div id="tags-group" className="dark:border-gray-700 space-y-2">
|
||||
{tags.map((tag, index) => {
|
||||
const selected = currentTag === tag.name
|
||||
return (
|
||||
<Link passHref key={index} href={`/tag/${encodeURIComponent(tag.name)}`}
|
||||
className={'cursor-pointer inline-block whitespace-nowrap'}
|
||||
>
|
||||
<div className={`${className || ''}
|
||||
${selected ? 'text-white bg-blue-600 dark:bg-yellow-600' : ''}
|
||||
flex items-center hover:bg-blue-600 dark:hover:bg-yellow-600 hover:scale-110 hover:text-white rounded-lg px-2 py-0.5 duration-150 transition-all`}
|
||||
>
|
||||
<div className="text-lg">{tag.name} </div>
|
||||
{tag.count
|
||||
? (
|
||||
<sup className="relative ml-1">{tag.count}</sup>
|
||||
)
|
||||
: (
|
||||
<></>
|
||||
)}
|
||||
</div>
|
||||
</Link>
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user