mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-10 15:01:03 +00:00
FB-1601 - Put a link to the cloud SaaS page in the admin UI (#2189)
This commit is contained in:
parent
3c2ef484bd
commit
985a70b14e
1 changed files with 11 additions and 3 deletions
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue