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

add Product Hunt page #310

Merged
merged 11 commits into from
Nov 27, 2023
9 changes: 8 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ module.exports = {
to: '/privacy-vault',
label: 'Privacy Vault',
},
{ to: '/saas-registration', label: 'SaaS Early Access' },
{
href: 'https://app.eu.boxyhq.com/auth/join',
label: 'SaaS Sign up',
},
{
href: 'https://github.com/boxyhq/saas-starter-kit',
label: 'Enterprise SaaS Starter Kit',
Expand Down Expand Up @@ -171,6 +174,10 @@ module.exports = {
label: 'Developer-First Security Week',
href: 'https://boxyhq.com/developer-first-security-week',
},
{
label: 'SaaS Product Hunt Launch',
href: '/saas-producthunt',
},
],
},
{
Expand Down
12,494 changes: 1,134 additions & 11,360 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions src/pages/directory-sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ const DSync = () => {
icon={ProductIcon}
buttons={[
{
title: 'Get started',
title: 'Sign up',
href: 'https://app.eu.boxyhq.com/auth/join',
className: 'button--primary',
},
{
title: 'Open Source',
href: 'https://github.com/boxyhq/jackson#directory-sync',
className: 'button--primary',
},
Expand All @@ -37,11 +42,6 @@ const DSync = () => {
href: '/docs/directory-sync/overview',
className: 'button--primary button--outline',
},
{
title: 'Early SaaS access',
href: 'https://boxyhq.com/saas-registration',
className: 'button--primary',
},
]}
/>

Expand Down
14 changes: 7 additions & 7 deletions src/pages/enterprise-sso.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,20 +64,20 @@ const EnterpriseSSO = () => {
icon={ProductIcon}
buttons={[
{
title: 'Get Started',
title: 'Sign up',
href: 'https://app.eu.boxyhq.com/auth/join',
className: 'button--primary',
},
{
title: 'Open Source',
href: 'https://github.com/boxyhq/jackson',
className: 'button--primary',
},
{
title: 'Try It',
title: 'Demo',
href: 'https://saml-demo.boxyhq.com',
className: 'button--primary button--outline',
},
{
title: 'Early SaaS access',
href: 'https://boxyhq.com/saas-registration',
className: 'button--primary',
},
]}
/>

Expand Down
12 changes: 6 additions & 6 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@ const IndexPage = () => {
image="/img/home-hero.svg"
buttons={[
{
title: 'Get Started',
title: 'Sign up',
href: 'https://app.eu.boxyhq.com/auth/join',
className: 'button--primary',
},
{
title: 'Open Source',
href: 'https://boxyhq.com/docs',
className: 'button--primary',
},
Expand All @@ -36,11 +41,6 @@ const IndexPage = () => {
href: 'https://cal.com/deepak-boxyhq/demo',
className: 'button--primary button--outline',
},
{
title: 'Early SaaS access',
href: 'https://boxyhq.com/saas-registration',
className: 'button--primary',
},
]}
/>

Expand Down
Loading