stlyes fixes

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-29 19:52:51 +00:00
parent c91175fdcb
commit 4f7ab9c606
155 changed files with 1576 additions and 2489 deletions

View File

@@ -168,12 +168,12 @@ export default function Industries() {
{industry.topKeywords.slice(0, 5).map((keyword, idx) => (
<div
key={keyword.id || idx}
className="inline-flex items-center gap-1 px-2 py-0.5 rounded-md bg-blue-50 dark:bg-blue-900/20 border border-blue-200 dark:border-blue-800"
className="inline-flex items-center gap-1 px-2 py-0.5 rounded-md bg-brand-50 dark:bg-brand-900/20 border border-brand-200 dark:border-brand-800"
>
<span className="text-xs font-medium text-blue-700 dark:text-blue-300">
<span className="text-xs font-medium text-brand-700 dark:text-brand-300">
{keyword.keyword}
</span>
<span className="text-xs text-blue-600 dark:text-blue-400 font-semibold">
<span className="text-xs text-brand-600 dark:text-brand-400 font-semibold">
{keyword.volume ? (keyword.volume >= 1000 ? `${(keyword.volume / 1000).toFixed(1)}k` : keyword.volume.toString()) : '-'}
</span>
</div>