mycroforge/docs/src/components/HomepageFeatures/index.tsx
2024-07-26 16:57:28 +02:00

72 lines
1.9 KiB
TypeScript

import clsx from 'clsx';
import Heading from '@theme/Heading';
import styles from './styles.module.css';
type FeatureItem = {
title: string;
// Svg: React.ComponentType<React.ComponentProps<'svg'>>;
description: JSX.Element;
};
const FeatureList: FeatureItem[] = [
{
title: 'Initialize a Skeleton Project Quickly',
// Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
description: (
<>
Start a new FastAPI and SQLAlchemy project with a single command.
For example: <code>m4g init todo-app</code>
</>
),
},
{
title: 'Generate Common Items',
// Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
description: (
<>
Use MycroForge to generate boilerplate code for entities, services, and routers.
It even supports basic CRUD setup!
</>
),
},
{
title: 'Extend MycroForge',
// Svg: '',
// Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
description: (
<>
Create plugins to extend MycroForge with your own custom commands.
</>
),
},
];
function Feature({ title, description }: FeatureItem) {
// function Feature({ title, Svg, description }: FeatureItem) {
return (
<div className={clsx('col col--4', styles.feature)}>
<div className="text--center">
{/* <Svg className={styles.featureSvg} role="img" /> */}
</div>
<div className="text--center padding-horiz--md">
<Heading as="h3">{title}</Heading>
<p>{description}</p>
</div>
</div>
);
}
export default function HomepageFeatures(): JSX.Element {
return (
<section className={styles.features}>
<div className="container">
<div className="row">
{FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
);
}