diff --git a/docs-website/src/pages/cloud/DemoForm/styles.module.scss b/docs-website/src/pages/cloud/DemoForm/styles.module.scss index 4157a228ae739..c56dd1d598605 100644 --- a/docs-website/src/pages/cloud/DemoForm/styles.module.scss +++ b/docs-website/src/pages/cloud/DemoForm/styles.module.scss @@ -46,9 +46,7 @@ .bookButton { display: block; } - .formContainer { - display: none; - } + .productTourButton { text-align: center!important; } diff --git a/docs-website/src/pages/cloud/DemoFormModal/index.jsx b/docs-website/src/pages/cloud/DemoFormModal/index.jsx new file mode 100644 index 0000000000000..7c890950bda97 --- /dev/null +++ b/docs-website/src/pages/cloud/DemoFormModal/index.jsx @@ -0,0 +1,17 @@ +import React, { useEffect } from 'react'; +import styles from "./styles.module.scss"; +import DemoForm from '../DemoForm'; + +const DemoFormModal = ({ formId, handleCloseModal }) => { + + return ( +
+
+ + +
+
+ ); +}; + +export default DemoFormModal; diff --git a/docs-website/src/pages/cloud/DemoFormModal/styles.module.scss b/docs-website/src/pages/cloud/DemoFormModal/styles.module.scss new file mode 100644 index 0000000000000..44461567e578b --- /dev/null +++ b/docs-website/src/pages/cloud/DemoFormModal/styles.module.scss @@ -0,0 +1,45 @@ + +.modal { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.5); /* Modal background */ + display: flex; + justify-content: center; + align-items: center; + z-index: 1000; + overflow-y: scroll; + + .modalContent { + width: 90%; + max-width: 540px; + background: #fff; + border-radius: 16px; + position: relative; + box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); + animation: modalShow 0.3s ease-in-out; + + .closeButton { + position: absolute; + top: 1rem; + right: 1rem; + background: none; + border: none; + font-size: 1.5rem; + cursor: pointer; + } + } +} + +@keyframes modalShow { + from { + opacity: 0; + transform: translateY(-20px); + } + to { + opacity: 1; + transform: translateY(0); + } +} diff --git a/docs-website/src/pages/cloud/Hero/index.js b/docs-website/src/pages/cloud/Hero/index.js index eeb982544ddca..8e4cb2145c514 100644 --- a/docs-website/src/pages/cloud/Hero/index.js +++ b/docs-website/src/pages/cloud/Hero/index.js @@ -1,38 +1,56 @@ -import React, { useEffect } from 'react'; +import React, { useState } from 'react'; import clsx from "clsx"; import Link from "@docusaurus/Link"; import styles from "./styles.module.scss"; import ScrollingCustomers from '../CompanyLogos'; import DemoForm from '../DemoForm'; +import DemoFormModal from '../DemoFormModal'; const Hero = () => { + const [isModalOpen, setIsModalOpen] = useState(false); + + const handleOpenModal = () => setIsModalOpen(true); + const handleCloseModal = () => setIsModalOpen(false); + return (
-

DataHub Cloud

-
+

DataHub Cloud

+
Experience the premium version of DataHub -
- with Observability and Governance built-in. -
+
+ with Observability and Governance built-in.
- - Book Demo - - - Live Product Tour → - - +
+ + + + + Live Product Tour → + +
-
- +
+
+ + {isModalOpen && ( + + )}
); }; diff --git a/docs-website/src/pages/cloud/Hero/styles.module.scss b/docs-website/src/pages/cloud/Hero/styles.module.scss index 5da028d017155..c073b8590d214 100644 --- a/docs-website/src/pages/cloud/Hero/styles.module.scss +++ b/docs-website/src/pages/cloud/Hero/styles.module.scss @@ -64,6 +64,10 @@ .productTourButton { text-align: center!important; } + + .hideOnMobile{ + display: none; + } } @media screen and (min-width: 1000px){ @@ -71,4 +75,4 @@ padding-left: 0!important; margin-left: 0!important; } -} \ No newline at end of file +} diff --git a/docs-website/src/pages/cloud/index.js b/docs-website/src/pages/cloud/index.js index 99768ca721078..4d323450e2906 100644 --- a/docs-website/src/pages/cloud/index.js +++ b/docs-website/src/pages/cloud/index.js @@ -1,4 +1,4 @@ -import React from "react"; +import React, { useState } from "react"; import Layout from "@theme/Layout"; import Link from "@docusaurus/Link"; import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; @@ -10,11 +10,16 @@ import UnifiedTabs from "./UnifiedTabs"; import FeatureCards from "./FeatureCards"; import Hero from "./Hero"; import DemoForm from "./DemoForm"; +import DemoFormModal from "./DemoFormModal"; function Home() { const context = useDocusaurusContext(); const { siteConfig = {} } = context; + const [isModalOpen, setIsModalOpen] = useState(false); + + const handleOpenModal = () => setIsModalOpen(true); + const handleCloseModal = () => setIsModalOpen(false); if (siteConfig.customFields.isSaas) { window.location.replace("/docs"); } @@ -28,7 +33,7 @@ function Home() {
- +
@@ -41,25 +46,33 @@ function Home() {
-
-

Start your free trial
today.

-
Unify Discovery, Observability and Governance
for data and AI.
+
+

Start your free trial
today.

+
+ Unify Discovery, Observability and Governance
for data and AI. +
- + Live Product Tour →
-
- +
+
+ {isModalOpen && ( + + )} ) : null; } diff --git a/docs-website/src/pages/cloud/styles.module.scss b/docs-website/src/pages/cloud/styles.module.scss index 0590b8baf12c8..1a873df9a8118 100644 --- a/docs-website/src/pages/cloud/styles.module.scss +++ b/docs-website/src/pages/cloud/styles.module.scss @@ -86,11 +86,22 @@ @media screen and (max-width: 999px) { .bookButton, .productTourButton { display: block; + width: 100%; } .productTourButton { text-align: center!important; } + + + .hideOnMobile { + display: none; + } + + .formContainer { + display: none; + } + } @media screen and (min-width: 1000px){ @@ -98,4 +109,4 @@ padding-left: 0!important; margin-left: 0!important; } -} \ No newline at end of file +}