Files
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

27 lines
1.2 KiB
TypeScript

/** Instant skeleton while SettingsPage loads. */
export default function SettingsLoading() {
return (
<div className="page">
<div className="page-head" style={{ marginBottom: 24 }}>
<div className="skeleton sk-title" style={{ width: 120, marginBottom: 8 }} />
</div>
{Array.from({ length: 3 }).map((_, i) => (
<div key={i} className="skeleton-card" style={{ marginBottom: 14, padding: 24 }}>
<div className="skeleton sk-line" style={{ width: 160, marginBottom: 18 }} />
<div style={{ display: 'flex', flexDirection: 'column', gap: 14 }}>
{Array.from({ length: 3 }).map((_, j) => (
<div key={j} style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
<div>
<div className="skeleton sk-line" style={{ width: 140, marginBottom: 6 }} />
<div className="skeleton sk-line-sm" style={{ width: 200 }} />
</div>
<div className="skeleton" style={{ width: 72, height: 32, borderRadius: 8 }} />
</div>
))}
</div>
</div>
))}
</div>
)
}