mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-15 01:18:37 +01:00
add docs
This commit is contained in:
67
docs/src/components/HomepageFeatures/index.tsx
Normal file
67
docs/src/components/HomepageFeatures/index.tsx
Normal file
@@ -0,0 +1,67 @@
|
||||
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: 'One-Line code Configuration',
|
||||
Svg: require('@site/static/img/one.svg').default,
|
||||
description: (
|
||||
<>
|
||||
Quickly integrate LitLyx using just a single line of code, and start gathering critical insights instantly.
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: 'Easy Documentation',
|
||||
Svg: require('@site/static/img/doc.svg').default,
|
||||
description: (
|
||||
<>
|
||||
Access simple, easy-to-follow documentation helping you get started and make the most out of the tool, quickly.
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: 'Plug Anywhere',
|
||||
Svg: require('@site/static/img/plug.svg').default,
|
||||
description: (
|
||||
<>
|
||||
More than 15+ JS/TS Framework supported. The vanilla JS Script can plug in any solution even WordPress or PHP.
|
||||
</>
|
||||
),
|
||||
},
|
||||
];
|
||||
|
||||
function Feature({title, Svg, description}: FeatureItem) {
|
||||
return (
|
||||
<div className={clsx('col col--4')}>
|
||||
<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>
|
||||
);
|
||||
}
|
||||
11
docs/src/components/HomepageFeatures/styles.module.css
Normal file
11
docs/src/components/HomepageFeatures/styles.module.css
Normal file
@@ -0,0 +1,11 @@
|
||||
.features {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 2rem 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.featureSvg {
|
||||
height: 200px;
|
||||
width: 200px;
|
||||
}
|
||||
Reference in New Issue
Block a user