remx
Version:
Opinionated mobx
104 lines (99 loc) • 2.89 kB
JavaScript
import React from "react";
import clsx from "clsx";
import Layout from "@theme/Layout";
import Link from "@docusaurus/Link";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import useBaseUrl from "@docusaurus/useBaseUrl";
import styles from "./styles.module.css";
import StandWithUkraine from "../components/StandWithUkraine";
const features = [
{
title: "Easy",
imageUrl: "", //TODO: add .svg images in img folder
description: (
<>
Remx is designed from the ground up to be the state meneger for all your
websites and apps that's easy to install and use.
</>
),
},
{
title: "Zero Boilerplate",
imageUrl: "",
description: (
<>
Remx lets you focus on features, not the chores. Install Remx in your
website or app and hit the ground running.
</>
),
},
{
title: "Fast and Reliable",
imageUrl: "",
description: (
<>
Extend or customize your data management. Remx is reliable and fast to
use.
</>
),
},
];
function Feature({ imageUrl, title, description }) {
const imgUrl = useBaseUrl(imageUrl);
return (
<div className={clsx("col col--4", styles.features)}>
{imgUrl && (
<div className="text--center">
<img className={styles.featureImage} src={imgUrl} alt={title} />
</div>
)}
<h3>{title}</h3>
<p>{description}</p>
</div>
);
}
function Home() {
const context = useDocusaurusContext();
const { siteConfig = {} } = context;
return (
<>
<StandWithUkraine />
<Layout
title={`${siteConfig.title} - ${siteConfig.tagline}`}
description="Description will go into a meta tag in <head />"
>
<header className={clsx("hero hero--primary", styles.heroBanner)}>
<div className="container">
<h1 className="hero__title">{siteConfig.title}</h1>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<div className={styles.buttons}>
<Link
className={clsx(
"button button--outline button--secondary button--lg",
styles.getStarted
)}
to={useBaseUrl("docs/introduction/getting-started")}
>
Getting Started
</Link>
</div>
</div>
</header>
<main>
{features && features.length > 0 && (
<section className={styles.features}>
<div className="container">
<div className="row">
{features.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
)}
</main>
</Layout>
</>
);
}
export default Home;