feat: add coming soon plugins page

This commit is contained in:
Jacob Nguyen
2022-08-09 16:52:07 -05:00
parent 6f4ab8ef9c
commit 4e604a0449
5 changed files with 48 additions and 1 deletions

18
src/pages/plugins.js Normal file
View File

@@ -0,0 +1,18 @@
import React from 'react';
import Layout from '@theme/Layout';
import clsx from "clsx";
import styles from "./index.module.css";
export default function Plugins() {
return (
<Layout>
<header className={clsx('hero hero--primary-darker', styles.heroBanner)}>
<h1 className={"hero__title"}>
Coming soon
</h1>
</header>
</Layout>
)
}