Petropoulos Evangelos c76099dd3d refactor scss
2025-06-30 19:21:27 +03:00

23 lines
658 B
TypeScript

import React from "react";
import DescriptionIcon from "@mui/icons-material/Description";
import { SectionCard } from "../SectionCard/SectionCard";
import { Box } from "@mui/material";
import "./Documentation.scss";
export const Documentation = () => {
return (
<Box className="documentation-wrapper">
<SectionCard
title="Documentation"
icon={<DescriptionIcon className="icon" fontSize="small" />}
items={[
{ title: "Provider Integration Overview" },
{ title: "APIs Introduction" },
{ title: "Documentation Overview" },
{ title: "How-Tos" },
]}
/>
</Box>
);
};