Change some of the icons

This commit is contained in:
2022-03-06 00:11:37 -06:00
parent 51bff1f19d
commit 0f5d6aca44
10 changed files with 42 additions and 8 deletions

View File

@ -1,3 +1,4 @@
import React from 'react';
import clsx from 'clsx';
import styles from './HomepageFeatures.module.css';
@ -15,7 +16,7 @@ const FeatureList = [
},
{
title: 'Fully Customizable',
Svg: require('../../static/img/cogs-solid.svg').default,
Svg: require('../../static/img/sliders-solid.svg').default,
description: (
<>
Plex is designed to be customizable to fit your server's needs. Almost all messages within the plugin can be easily changed.
@ -32,6 +33,36 @@ const FeatureList = [
</>
),
},
{
title: 'Modular',
Svg: require('../../static/img/download-solid.svg').default,
description: (
<>
Plex features a fully modular system. You can add or remove modules based on how your server is configured. If you're using permissions,
you likely won't need our command blocker, but you will if you use ranks.
</>
),
},
{
title: 'Converters',
Svg: require('../../static/img/forward-fast-solid.svg').default,
description: (
<>
We have written tools to convert your existing data from TotalFreedomMod to Plex. This will make your transition even easier so you won't
have to start fresh.
</>
),
},
{
title: 'Quality Control',
Svg: require('../../static/img/bug-slash-solid.svg').default,
description: (
<>
Each release is tested to find bugs before you have to encounter them on your server. Plex's codebase was designed for rapid progress and
won't unexpectedly break.
</>
),
},
];
function Feature({Svg, title, description}) {

View File

@ -1,11 +1,11 @@
.features {
display: flex;
align-items: center;
padding: 2rem 0;
padding: 3rem 0;
width: 100%;
}
.featureSvg {
height: 150px;
width: 150px;
height: 115px;
width: 115px;
}

View File

@ -30,7 +30,7 @@ export default function Home() {
return (
<Layout
title={`Home`}
description="The official documentation for Plex.">
description="The official website and documentation for Plex">
<HomepageHeader />
<main>
<HomepageFeatures />