diff --git a/src/components/HomepageFeatures/index.js b/src/components/HomepageFeatures/index.js new file mode 100644 index 0000000..35eac23 --- /dev/null +++ b/src/components/HomepageFeatures/index.js @@ -0,0 +1,61 @@ +import clsx from 'clsx'; +import Heading from '@theme/Heading'; +import styles from './styles.module.css'; + +const FeatureList = [ + { + title: 'Connect', + Svg: require('@site/static/img/connect.svg').default, + description: ( + <> + Connect with 100+ other discord servers and hang out with them in our server! + > + ), + }, + { + title: 'Gain Achievements', + Svg: require('@site/static/img/achievements.svg').default, + description: ( + <> + It's fun! Gain XP and level up to unlock achievements and get access to more features! + > + ), + }, + { + title: 'Easy to Use', + Svg: require('@site/static/img/dashboard.svg').default, + description: ( + <> + Our dashboard is easy to use and is designed to be user friendly! + > + ), + }, +]; + +function Feature({Svg, title, description}) { + return ( +
{description}
+