Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs-site) remove free trial notes #11729

Merged
merged 4 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs-website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ module.exports = {
opacity: 0.8;
}
</style>
<div class='cloud-cta button button--primary' alt='try-datahub-cloud' style='font-weight: 700;'>Try DataHub Cloud Free</div>
<div class='cloud-cta button button--primary' alt='try-datahub-cloud' style='font-weight: 700;'>Try DataHub Cloud</div>
`,
position: "right",
}
Expand Down
2 changes: 1 addition & 1 deletion docs-website/src/pages/_components/Trial/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Trial = ({onOpenTourModal}) => {
<div className={styles.left_content}>
<span className="">Discover. Observe. Govern.</span>
<p className="">
Get a free trial of<br/><b>DataHub</b> cloud today.
Get started with<br/><b>DataHub</b> cloud today.
</p>
<div className={styles.btn_div}>
<Link to="/cloud">Book a Demo</Link>
Expand Down
2 changes: 1 addition & 1 deletion docs-website/src/pages/cloud/DemoForm/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const DemoForm = ({ formId }) => {
<div className={clsx(styles.formHeader)}>
<div className={clsx(styles.formTitle)}>Book a Demo</div>
<div className={clsx(styles.formSubtitle)}>
Schedule your personalized demo and get a free trial.
Schedule your personalized demo and get a trial.
</div>
</div>
<div id={`hubspotForm-${formId}`} className={styles.hubspotForm}></div> {/* Use unique ID */}
Expand Down
1 change: 1 addition & 0 deletions docs-website/src/pages/cloud/Enterprise/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

.title {
font-size: 2.8rem;
line-height: 3rem;
font-weight: 600;
margin-bottom: 2rem;
}
Expand Down
3 changes: 3 additions & 0 deletions docs-website/src/pages/cloud/Hero/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@
.hideOnMobile{
display: none;
}
.hero__title, .hero__subtitle {
text-align: center!important;
}
}

@media screen and (min-width: 1000px){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

.title {
font-size: 2.5rem;
line-height: 2.75rem;
font-weight: 500;
margin-bottom: 2rem;
text-align: center;
Expand Down
2 changes: 1 addition & 1 deletion docs-website/src/pages/cloud/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function Home() {
<div className="container" style={{ paddingTop: '12vh', paddingBottom: '12vh' }}>
<div className="row row__padded">
<div className={clsx(styles.col, styles.hero__cta, "col col--7")}>
<h1 className={styles.hero__title}>Start your free trial<br />today.</h1>
<h1 className={styles.hero__title}>Try DataHub Cloud<br />today.</h1>
<div className={clsx(styles.hero__subtitle)}>
Unify Discovery, Observability and Governance<br />for data and AI.
</div>
Expand Down
5 changes: 4 additions & 1 deletion docs-website/src/pages/cloud/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
.bookButton, .productTourButton {
display: block;
width: 100%;
margin-left: 0!important;
}

.productTourButton {
Expand All @@ -101,7 +102,9 @@
.formContainer {
display: none;
}

.hero__title, .hero__subtitle {
text-align: center!important;
}
}

@media screen and (min-width: 1000px){
Expand Down
Loading