Commit workspace changes

This commit is contained in:
2026-04-05 19:42:33 +02:00
parent 148a3bbe43
commit 08ad757bcb
312 changed files with 35149 additions and 399 deletions

View File

@@ -7,6 +7,7 @@ import SeoHead from '../../components/seo/SeoHead'
const TYPE_TABS = [
{ value: 'creator', label: 'Creators' },
{ value: 'artwork', label: 'Artworks' },
{ value: 'group', label: 'Groups' },
{ value: 'story', label: 'Stories' },
]
@@ -20,6 +21,7 @@ const PERIOD_TABS = [
const API_BY_TYPE = {
creator: '/api/leaderboard/creators',
artwork: '/api/leaderboard/artworks',
group: '/api/leaderboard/groups',
story: '/api/leaderboard/stories',
}
@@ -71,17 +73,17 @@ export default function LeaderboardPage() {
return (
<>
<SeoHead seo={seo} title={seo?.title || 'Leaderboard — Skinbase'} description={seo?.description || 'Top creators, artworks, and stories on Skinbase.'} />
<SeoHead seo={seo} title={seo?.title || 'Leaderboard — Skinbase'} description={seo?.description || 'Top creators, groups, artworks, and stories on Skinbase.'} />
<div className="min-h-screen bg-[radial-gradient(circle_at_top,rgba(14,165,233,0.14),transparent_34%),linear-gradient(180deg,#020617_0%,#0f172a_48%,#020617_100%)] pb-16 text-slate-100">
<div className="mx-auto w-full max-w-7xl px-4 py-8 sm:px-6 lg:px-8">
<header className="rounded-[2rem] border border-white/10 bg-slate-950/70 px-6 py-8 shadow-[0_35px_120px_rgba(2,6,23,0.75)] backdrop-blur">
<p className="text-xs font-semibold uppercase tracking-[0.28em] text-sky-300">Skinbase Competition Board</p>
<h1 className="mt-4 max-w-3xl text-4xl font-black tracking-tight text-white sm:text-5xl">
Top creators, standout artworks, and stories with momentum.
Top creators, groups, standout artworks, and stories with momentum.
</h1>
<p className="mt-4 max-w-2xl text-sm leading-6 text-slate-300 sm:text-base">
Switch between creators, artworks, and stories, then filter by daily, weekly, monthly, or all-time performance.
Switch between creators, groups, artworks, and stories, then filter by daily, weekly, monthly, or all-time performance.
</p>
</header>