import React from "react";
import {
Box,
Typography,
Paper,
Stack,
Divider,
alpha,
Link,
} from "@mui/material";
import PageHeader from "../../components/PageHeader/PageHeader";
const Section = ({ title, children }) => (
theme.palette.mode === "dark"
? alpha(theme.palette.divider, 0.1)
: "grey.200",
bgcolor: (theme) =>
theme.palette.mode === "dark"
? alpha(theme.palette.background.paper, 0.5)
: "grey.50",
}}
>
{title}
{children}
);
const Tag = ({ children }) => (
alpha(theme.palette.primary.main, 0.1),
color: "primary.main",
borderRadius: 1,
fontSize: "0.875rem",
fontWeight: 600,
mr: 1,
mb: 1,
}}
>
{children}
);
const TagSection = ({ title, description, tags, explanations }) => (
{title}
{description && (
{description}
)}
{tags.map((tag, index) => (
{tag}
{explanations && explanations[index] && (
{explanations[index]}
)}
))}
);
const CodeBlock = ({ children }) => (
theme.palette.mode === "dark"
? "rgba(255, 255, 255, 0.05)"
: "rgba(0, 0, 0, 0.03)",
p: 2,
borderRadius: 1,
fontFamily: "monospace",
mb: 2,
}}
>
{children}
);
const HowToSubmitPage = () => {
return (
Learn how to be listed on
the explorer
>
}
/>
Your space will appear automatically in the lists if it contains
correct metadata!
Make sure to either use the tag leaderboard or arena to your space,
by adding the following to your README:
tags:
- leaderboard
then any other tags of interest to you.
If you would like to see a domain that is not currently represented,
please contact{" "}
Clementine Fourrier
{" "}
on Hugging Face.
);
};
export default HowToSubmitPage;