From 985a70b14e6ea7ea4c3950c724a865c42e9dea92 Mon Sep 17 00:00:00 2001 From: hphamMolecula <89804723+hphamMolecula@users.noreply.github.com> Date: Thu, 11 Aug 2022 16:55:50 -0500 Subject: [PATCH] FB-1601 - Put a link to the cloud SaaS page in the admin UI (#2189) --- lattice/src/App/Home/Home.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lattice/src/App/Home/Home.tsx b/lattice/src/App/Home/Home.tsx index 147945ce5..e315a4aa7 100644 --- a/lattice/src/App/Home/Home.tsx +++ b/lattice/src/App/Home/Home.tsx @@ -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 = () => ( - - - + + Try FeatureBase Cloud at + + + app.molecula.cloud + + + + +
);