mirror of
https://github.com/sern-handler/website
synced 2026-06-28 02:32:23 +00:00
18 lines
432 B
JavaScript
18 lines
432 B
JavaScript
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>
|
|
)
|
|
} |