FB-1601 - Put a link to the cloud SaaS page in the admin UI (#2189)

This commit is contained in:
hphamMolecula 2022-08-11 16:55:50 -05:00 committed by GitHub
parent 3c2ef484bd
commit 985a70b14e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,12 +3,20 @@ import { ClusterHealth } from 'App/Home/ClusterHealth';
import { QueryHistory } from 'App/Home/QueryHistory';
import { Transactions } from 'App/Home/Transactions';
import css from './Home.module.scss';
import { Link, Typography } from '@material-ui/core';
export const Home: FC = () => (
<Fragment>
<ClusterHealth />
<Transactions />
<QueryHistory />
<Typography variant="h6" color="textPrimary" align="center" style={{padding: 30, paddingBottom: 0}}>
Try FeatureBase Cloud at
<span> </span>
<Link href="https://app.molecula.cloud/" underline="always">
app.molecula.cloud
</Link>
</Typography>
<ClusterHealth/>
<Transactions/>
<QueryHistory/>
<div className={css.prodPadSpacer} />
</Fragment>
);