Spaces:
Running
Running
reduce size header
Browse files
components/spaces/index.tsx
CHANGED
@@ -62,16 +62,17 @@ export const Spaces: React.FC<{ spaces: SpaceProps[] }> = ({ spaces }) => {
|
|
62 |
|
63 |
return (
|
64 |
<section id="app" className="flex h-screen overflow-auto">
|
65 |
-
<div className="w-full container px-6 py-10 lg:pb-20 lg:py-12 mx-auto space-y-10
|
66 |
<div className="rounded-lg p-[3px] lg:max-w-max mx-auto bg-gradient-to-br from-pink-300 via-green-200 to-yellow-200 shadow-lg z-[9999]">
|
67 |
-
<p className="bg-white dark:bg-slate-900 rounded-md
|
68 |
<a
|
69 |
href="https://huggingface.co/settings/billing/subscription#subscribe"
|
70 |
className="underline text-gray-600 dark:text-slate-400 hover:text-gray-700 dark:hover:text-slate-200"
|
71 |
>
|
72 |
Subscribe to PRO
|
73 |
</a>
|
74 |
-
to unlock 5x usage quota and the highest ZeroGPU queue
|
|
|
75 |
</p>
|
76 |
</div>
|
77 |
<header className="max-w-5xl mx-auto w-full flex-col items-start flex gap-5 lg:gap-10">
|
@@ -115,7 +116,7 @@ export const Spaces: React.FC<{ spaces: SpaceProps[] }> = ({ spaces }) => {
|
|
115 |
<Sort value={sort} onChange={setSort} />
|
116 |
</div>
|
117 |
</header>
|
118 |
-
<div className="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-4">
|
119 |
{filteredSpaces.length === 0 && (
|
120 |
<div className="col-span-full flex items-center flex-col justify-center gap-2">
|
121 |
<p className="text-neutral-500 font-regular text-base dark:text-slate-300">
|
|
|
62 |
|
63 |
return (
|
64 |
<section id="app" className="flex h-screen overflow-auto">
|
65 |
+
<div className="w-full container px-6 py-10 lg:pb-20 lg:py-12 mx-auto space-y-10">
|
66 |
<div className="rounded-lg p-[3px] lg:max-w-max mx-auto bg-gradient-to-br from-pink-300 via-green-200 to-yellow-200 shadow-lg z-[9999]">
|
67 |
+
<p className="bg-white dark:bg-slate-900 rounded-md px-5 py-3 text-sm text-gray-500 dark:text-slate-500">
|
68 |
<a
|
69 |
href="https://huggingface.co/settings/billing/subscription#subscribe"
|
70 |
className="underline text-gray-600 dark:text-slate-400 hover:text-gray-700 dark:hover:text-slate-200"
|
71 |
>
|
72 |
Subscribe to PRO
|
73 |
</a>
|
74 |
+
to unlock 5x usage quota and the highest ZeroGPU queue
|
75 |
+
priority.
|
76 |
</p>
|
77 |
</div>
|
78 |
<header className="max-w-5xl mx-auto w-full flex-col items-start flex gap-5 lg:gap-10">
|
|
|
116 |
<Sort value={sort} onChange={setSort} />
|
117 |
</div>
|
118 |
</header>
|
119 |
+
<div className="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-4 pt-4">
|
120 |
{filteredSpaces.length === 0 && (
|
121 |
<div className="col-span-full flex items-center flex-col justify-center gap-2">
|
122 |
<p className="text-neutral-500 font-regular text-base dark:text-slate-300">
|