diff --git a/src/revamp/ui/GetDemoSection/index.js b/src/revamp/ui/GetDemoSection/index.js
index 47c732217..340b39691 100644
--- a/src/revamp/ui/GetDemoSection/index.js
+++ b/src/revamp/ui/GetDemoSection/index.js
@@ -1,4 +1,4 @@
-import { Stack, Typography } from '@mui/material';
+import { Box, Stack, Typography } from '@mui/material';
import { Form, Formik } from 'formik';
import MuiMarkdown from 'markdown-to-jsx';
import {
@@ -139,112 +139,7 @@ const GetDemoSection = ({
{data?.description || supportingText}
-
-
- Trusted By
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- G2 MOMENTUM LEADER
-
-
-
-
-
-
-
-
+
@@ -375,3 +270,145 @@ const GetDemoSection = ({
};
export default GetDemoSection;
+
+function TrustLogos() {
+ return (
+
+
+
+
+
+
+ );
+}
+
+export function Logos({ invert = false, alignLeft }) {
+ return (
+
+
+ Trusted By
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+export function G2Awards({ alignLeft }) {
+ return (
+
+
+ G2 MOMENTUM LEADER
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/views/zesty/Demo.js b/src/views/zesty/Demo.js
index f2399f097..2931cf124 100644
--- a/src/views/zesty/Demo.js
+++ b/src/views/zesty/Demo.js
@@ -25,172 +25,158 @@
*/
import { React } from 'react';
import { useTheme } from '@mui/material/styles';
-// import Typography from '@mui/material/Typography';
-// import FillerContent from 'components/globals/FillerContent';
-// import ZohoFormEmbed from 'components/cta/ZohoFormEmbed';
-// import MuiMarkdown from 'markdown-to-jsx';
-// import ZestyImage from 'blocks/Image/ZestyImage';
-// import useMediaQuery from '@mui/material/useMediaQuery';
import {
- // Avatar, Grid, Box, Container,
-
+ Box,
+ Button,
+ Card,
+ Grid,
+ Stack,
ThemeProvider,
+ Typography,
+ alpha,
} from '@mui/material';
-// import SimpleCardLogo from 'blocks/zesty/LogoGrid/SimpleCardLogo';
-// import DarkBlueCta from 'blocks/zesty/Cta/DarkBlueCta';
-import GetDemoSection from 'revamp/ui/GetDemoSection';
+import MuiMarkdown from 'markdown-to-jsx';
import revampTheme from 'theme/revampTheme';
+import ArrowForwardRoundedIcon from '@mui/icons-material/ArrowForwardRounded';
+import Link from 'next/link';
+import { G2Awards, Logos } from 'revamp/ui/GetDemoSection';
-const Demo = () => {
+const Demo = ({ content }) => {
const theme = useTheme();
- // const isMobile = useMediaQuery(theme.breakpoints.down('md'));
+
+ const cardData = content?.dynamic_contact_page?.data;
return (
revampTheme(theme.palette.mode)}>
-
+
+ {/* */}
- //
- //
- //
- //
- //
- //
- // {content?.demo_description || FillerContent.description}
- //
- //
- //
- // {content?.g2_badges?.data.map((item, index) => (
- //
- //
- //
- // ))}
- //
- //
- // {content?.testimonial?.data.map((item, index) => (
- //
- //
- // {item?.review || FillerContent.description}
- //
-
- //
- //
- //
- //
- // {item?.reviewer_name || FillerContent.description}
- //
- //
- // {item?.reviewer_title || FillerContent.description}
- //
- //
- //
- //
- // ))}
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
-
- //
- //
- //
);
};
export default Demo;
+
+function EngageTypeCards({ cardData }) {
+ const theme = useTheme();
+ return (
+
+
+
+ How would you like to engage?
+
+
+
+
+ {cardData.map((item) => {
+ return (
+
+
+
+
+
+ {item?.title || ''}
+
+
+
+
+
+
+
+ {item?.description || ''}
+
+
+
+
+
+
+
+
+ );
+ })}
+
+
+
+
+
+
+
+
+
+
+
+ );
+}