Spaces:
Running
Running
Commit
·
70e222c
1
Parent(s):
b86067d
add hugging face
Browse files
src/components/OrganizationCard.tsx
CHANGED
|
@@ -24,8 +24,8 @@ const OrganizationCard: React.FC<OrganizationCardProps> = ({
|
|
| 24 |
<div className="flex items-center justify-center gap-2 mb-2">
|
| 25 |
{/* Multi-author avatars and names */}
|
| 26 |
{provider.authorsData && provider.authorsData.length > 1 ? (
|
| 27 |
-
<div className="flex items-center gap-2">
|
| 28 |
-
{provider.authorsData.slice(0,
|
| 29 |
<React.Fragment key={authorData.author}>
|
| 30 |
{index > 0 && (
|
| 31 |
<span className="text-muted-foreground text-sm font-medium mx-1">+</span>
|
|
|
|
| 24 |
<div className="flex items-center justify-center gap-2 mb-2">
|
| 25 |
{/* Multi-author avatars and names */}
|
| 26 |
{provider.authorsData && provider.authorsData.length > 1 ? (
|
| 27 |
+
<div className="flex items-center gap-2 flex-wrap justify-center">
|
| 28 |
+
{provider.authorsData.slice(0, 8).map((authorData, index) => (
|
| 29 |
<React.Fragment key={authorData.author}>
|
| 30 |
{index > 0 && (
|
| 31 |
<span className="text-muted-foreground text-sm font-medium mx-1">+</span>
|
src/pages/index.tsx
CHANGED
|
@@ -28,6 +28,7 @@ const PROVIDERS: ProviderInfo[] = [
|
|
| 28 |
{ color: "#4C6EE6", authors: ["CohereLabs"] },
|
| 29 |
{ color: "#4C6EE6", authors: ["ibm-granite"] },
|
| 30 |
{ color: "#A020F0", authors: ["stabilityai"] },
|
|
|
|
| 31 |
];
|
| 32 |
|
| 33 |
export async function getStaticProps() {
|
|
|
|
| 28 |
{ color: "#4C6EE6", authors: ["CohereLabs"] },
|
| 29 |
{ color: "#4C6EE6", authors: ["ibm-granite"] },
|
| 30 |
{ color: "#A020F0", authors: ["stabilityai"] },
|
| 31 |
+
{ color: "#FEC912", authors: ["HuggingFaceTB","HuggingFaceH4", "HuggingFaceM4", "HuggingFaceFW", "HuggingFaceFV","open-r1","parler-tts","nanotron","lerobot","distilbert"] },
|
| 32 |
];
|
| 33 |
|
| 34 |
export async function getStaticProps() {
|