nextjs-hf-spaces / src /components /example-components.tsx
NERDDISCO's picture
feat: added getting-started, huggingface summarization, boxes
5786921
raw
history blame
405 Bytes
import { Typography } from "@mui/material";
import Huggingface from "./huggingface/huggingface";
import { SectionBox } from "./boxes";
export default function ExampleComponents() {
return (
<>
<SectionBox>
<Typography component="h2" variant="h3" sx={{ textAlign: "center" }}>
Example Components
</Typography>
</SectionBox>
<Huggingface />
</>
);
}