Skip to content

Commit

Permalink
enterprise readiness landing and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Schalk Neethling committed Jan 25, 2024
1 parent 8b5798e commit b7d6508
Show file tree
Hide file tree
Showing 9 changed files with 88 additions and 147 deletions.
8 changes: 3 additions & 5 deletions docs/index.mdx
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
---
title: Docs
description: Check out our documentation to see how you can deploy our enterprise-ready solutions into your application with ease. Check out our SAML Jackson for Single sign-on.
title: Security Building Blocks for Developers
description: BoxyHQ's official documentation for SSO, Directory Sync, Audit Logs, and Privacy Vault. Deploy our enterprise-ready solutions into your application with ease.
hide_table_of_contents: true
---

import Link from '@docusaurus/Link';

Security Building Blocks for Developers

Reduce Time to Market without sacrificing your security posture! BoxyHQ’s suite of APIs for security and privacy helps engineering teams build and ship compliant cloud applications faster. Integrate Single Sign-On (SSO), Audit Logs, Privacy Vault and Role Based Access in minutes. Open source and free.
Reduce Time to Market without sacrificing your security posture! BoxyHQ’s suite of APIs for security and privacy helps engineering teams build and ship compliant cloud applications faster. Integrate Single Sign-On (SSO), Audit Logs, Privacy Vault, and Role Based Access in minutes. Open source and free.

<div className="container" style={{ padding: 0 }}>
<div className="row is-multiline">
Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module.exports = {
label: 'Privacy Vault',
},
{
href: 'https://app.eu.boxyhq.com/auth/join',
href: 'https://app.eu.boxyhq.com/auth/join?utm_source=website&utm_campaign=main-nav',
label: 'SaaS Sign up',
},
{
Expand Down
10 changes: 6 additions & 4 deletions guides/index.mdx
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
---
title: Guides
description: Check out our guides to see how you can deploy our enterprise-ready solutions into your application with ease.
title: BoxyHQ Developer Guides
description: BoxyHQ's official guides for Single Sign-On (SSO) and Directory Sync.
hide_table_of_contents: true
---

import Link from '@docusaurus/Link';

Security Building Blocks for Developers
BoxyHQ’s extensive collection of developer guides is crafted to accelerate your integration with our cutting-edge products and APIs. Whether you’re deploying SAML Jackson, implementing Directory Sync with Express.js and Next.js, or integrating SAML Jackson into frameworks like Django, Laravel, Next.js, Remix, or Rails, our ever-expanding library is your go-to resource.

Reduce Time to Market without sacrificing your security posture! BoxyHQ’s suite of APIs for security and privacy helps engineering teams build and ship compliant cloud applications faster. Integrate Single Sign-On (SSO), Audit Logs, Privacy Vault and Role Based Access in minutes. Open source and free.
Each guide is meticulously designed to provide clear, step-by-step instructions, ensuring developers can quickly and efficiently leverage BoxyHQ's solutions in various environments. Our comprehensive tutorials cover a wide range of applications, tailored to meet the needs of both novice and experienced developers.

As we continuously update and expand our content, you’ll always have the latest insights and best practices at your fingertips, ensuring your projects are not just compliant, but also at the forefront of technological innovation.

<div className="container" style={{ padding: 0 }}>
<div className="row is-multiline">
Expand Down
44 changes: 44 additions & 0 deletions src/components/heroes/HeroEnterpriseReadiness/index.js
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;
6 changes: 6 additions & 0 deletions src/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,9 @@ ul.girdle-medium {
display: initial;
}
}

/* dacusaurus theme customisation */
.navbar__item .dropdown__link {
align-items: center;
display: flex;
}
5 changes: 5 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ body[data-theme='dark'] {
height: 3.5rem;
}

.navbar__item .dropdown__link {
align-items: center;
display: flex;
}

/* GitHub */
.header-github-link:hover {
opacity: 0.6;
Expand Down
136 changes: 0 additions & 136 deletions src/pages/enterprise-readiness.js

This file was deleted.

23 changes: 23 additions & 0 deletions src/pages/enterprise-readiness/index.js
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;
1 change: 0 additions & 1 deletion static/img/home-hero.svg

This file was deleted.

0 comments on commit b7d6508

Please sign in to comment.