-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enterprise readiness landing and cleanup
- Loading branch information
Schalk Neethling
committed
Jan 25, 2024
1 parent
8b5798e
commit b7d6508
Showing
9 changed files
with
88 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import BaseHero from '../BaseHero'; | ||
|
||
const HeroEnterpriseReadiness = () => { | ||
return ( | ||
<BaseHero | ||
pictureSrc="/images/heroes/enterprise-ready-hero" | ||
sectionId="enterprise-ready" | ||
title="SaaS Enterprise Readiness For Startups" | ||
> | ||
<p> | ||
Ensure your startup's SaaS offering is enterprise-ready with BoxyHQ's | ||
comprehensive suite of APIs and products. Effortlessly integrate | ||
essential enterprise-grade features like SAML SSO, Directory Sync, Audit | ||
Logs, and a Data Privacy Vault into your product. With just a few lines | ||
of code, you can seamlessly navigate the compliance processes of | ||
enterprise customers and InfoSec teams alike. BoxyHQ empowers you to | ||
swiftly implement these robust features, transforming your SaaS solution | ||
into a market leader in enterprise compatibility. Best of all, our | ||
solutions are open-source and secure by default, offering you a | ||
cost-effective pathway to achieving enterprise-level success. | ||
</p> | ||
<ul className="reset-list button-container"> | ||
<li> | ||
<a | ||
className="button button-secondary with-icon base-icon-pseudo icon-calendar" | ||
href="https://cal.com/deepak-boxyhq/demo" | ||
> | ||
Book A Demo | ||
</a> | ||
</li> | ||
<li> | ||
<a | ||
className="button button-primary with-icon base-icon-pseudo icon-code-slash" | ||
href="https://app.eu.boxyhq.com/auth/join?utm_source=website&utm_campaign=enterprise-readiness" | ||
> | ||
Sign Up Today | ||
</a> | ||
</li> | ||
</ul> | ||
</BaseHero> | ||
); | ||
}; | ||
|
||
export default HeroEnterpriseReadiness; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import Layout from '@theme/Layout'; | ||
|
||
import HeroEnterpriseReadiness from '../../components/heroes/HeroEnterpriseReadiness'; | ||
import Testimonials from '../../components/Testimonials'; | ||
import OurProducts from '../../components/OurProducts'; | ||
|
||
const EnterpriseReadiness = () => { | ||
const metaDescription = | ||
'BoxyHQ for Startups: Transform your SaaS with enterprise-grade features like SAML SSO, Directory Sync, Audit Logs, and Data Privacy Vault. Quick integration, open-source, secure by design - elevate your startup to enterprise readiness effortlessly.'; | ||
const metaPageTitle = 'B2B SaaS Enterprise Readiness For Startups'; | ||
|
||
return ( | ||
<Layout title={metaPageTitle} description={metaDescription}> | ||
<HeroEnterpriseReadiness /> | ||
<main> | ||
<Testimonials light={true} /> | ||
<OurProducts centerHeader={true} /> | ||
</main> | ||
</Layout> | ||
); | ||
}; | ||
|
||
export default EnterpriseReadiness; |
This file was deleted.
Oops, something went wrong.