trending-repos / index.html
cfahlgren1's picture
cfahlgren1 HF Staff
Update index.html
b1d73a8 verified
raw
history blame
2.51 kB
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Trending Datasets Dashboard</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="min-h-screen bg-blue-50">
<div class="mx-auto flex min-h-screen max-w-5xl flex-col px-4">
<div class="flex min-h-screen items-center justify-center">
<div class="w-full overflow-hidden bg-white shadow-lg sm:rounded-2xl sm:shadow-2xl">
<header class="bg-blue-100 px-4 py-6">
<h1 class="mb-2 text-2xl font-extrabold text-gray-800 sm:mb-3 sm:text-4xl">Trending Spaces Today</h1>
<p class="text-base text-gray-700 sm:text-lg">Discover the most popular spaces today.</p>
</header>
<div class="bg-white p-4">
<iframe
src="https://huggingface.co/datasets/cfahlgren1/hub-stats/embed/sql-console/datasets/train?sql_console=true&sql=select+%0A++trendingScore+as+score%2C+%0A++id%2C+%0A++date_trunc%28%27day%27%2CcreatedAt%3A%3ADATE%29+as+created%2C+%0A++from+spaces%0Awhere+createdAt%3A%3ADATE+%3E%3D+%28today%28%29+-+INTERVAL+%271+DAYS%27%29%0Aorder+by+trendingScore+desc%0Alimit+10%0A&views%5B%5D=datasets&views%5B%5D=spaces"
class="h-[400px] w-full"
loading="lazy"
frameborder="0"
></iframe>
</div>
</div>
</div>
<div class="flex min-h-screen items-start justify-center pt-16">
<div class="w-full overflow-hidden bg-white shadow-lg sm:rounded-2xl sm:shadow-2xl">
<header class="bg-blue-100 px-4 py-6">
<h1 class="mb-2 text-2xl font-extrabold text-gray-800 sm:mb-3 sm:text-4xl">Trending Datasets</h1>
<p class="text-base text-gray-700 sm:text-lg">See what the community is interested in the past 2 weeks.</p>
</header>
<div class="bg-white p-4">
<iframe
src="https://huggingface.co/datasets/cfahlgren1/hub-stats/embed/sql-console/datasets/train?sql_console=true&sql=select+%0A++trendingScore+as+score%2C+%0A++id%2C+%0A++COALESCE%28description%2C+%27%27%29+as+description%2C+%0A++date_trunc%28%27day%27%2CcreatedAt%3A%3ADATE%29+as+created%2C+%0A++COALESCE%28cardData%3A%3AJSON-%3E%3E%27license%27%2C+%27None%27%29+as+license%0A++from+datasets%0Awhere+createdAt%3A%3ADATE+%3E%3D+%28today%28%29+-+INTERVAL+%272+WEEK%27%29%0Aorder+by+trendingScore+desc%0Alimit+10%0A&views%5B%5D=datasets"
class="h-[560px] w-full"
loading="lazy"
></iframe>
</div>
</div>
</div>
</div>
</body>
</html>