Files
trumpsignal-frontend/app/[locale]/kol/loading.tsx
T
k 4c3c8c6f87 KOL count: 29 → 25 across marketing/SEO copy
Backend KOL_FEEDS trimmed from 29 to 25 (dead feeds removed).
Sync all hardcoded count mentions:
- layout.tsx JSON-LD, page.tsx (metric + comparison + copy)
- kol/page.tsx, KolPageClient.tsx ("and 26 more" → "and 22 more")
- glossary/page.tsx, opengraph-image.tsx
- public/llms.txt, llms-full.txt
- drop removed KOLs (Dragonfly Capital, Nic Carter) from named lists

Bundles other in-flight frontend work already in the working tree.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-09 22:55:27 +08:00

28 lines
1.2 KiB
TypeScript

/** Instant skeleton while KolPage fetches posts and digest. */
export default function KolLoading() {
return (
<div className="page">
<div className="page-head" style={{ marginBottom: 24 }}>
<div>
<div className="skeleton sk-title" style={{ width: 140, marginBottom: 8 }} />
<div className="skeleton sk-line" style={{ width: 260 }} />
</div>
</div>
{Array.from({ length: 6 }).map((_, i) => (
<div key={i} className="skeleton-card" style={{ marginBottom: 10, padding: 18 }}>
<div style={{ display: 'flex', gap: 12, alignItems: 'center', marginBottom: 10 }}>
<div className="skeleton" style={{ width: 36, height: 36, borderRadius: '50%', flexShrink: 0 }} />
<div style={{ flex: 1 }}>
<div className="skeleton sk-line" style={{ width: 120, marginBottom: 6 }} />
<div className="skeleton sk-line-sm" style={{ width: 80 }} />
</div>
<div className="skeleton sk-line" style={{ width: 60 }} />
</div>
<div className="skeleton sk-line sk-w-full" style={{ marginBottom: 6 }} />
<div className="skeleton sk-line sk-w-3q" />
</div>
))}
</div>
)
}