-
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.
feat: updated boxyhq vs workos page (#380)
* feat: updated boxyhq vs workos page This adds the new BoxyHQ vs WorkOS page with a new design and slightly updated copy. fix #363 * update meta description * reconfigure structure * reduce hero * remove old page and fix reduced header * table responsiveness
- Loading branch information
Schalk Neethling
authored
Feb 8, 2024
1 parent
3d86938
commit 960d064
Showing
17 changed files
with
271 additions
and
231 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import BaseHero from '../BaseHero'; | ||
import DemoCTA from '../../ctas/DemoCTA'; | ||
import SignupCTA from '../../ctas/SignupCTA'; | ||
|
||
const HeroBoxyHQWorkOS = () => { | ||
return ( | ||
<BaseHero reduced={true} sectionId="boxyhq-workos" title="BoxyHQ vs WorkOS"> | ||
<p> | ||
BoxyHQ is a flexible, secure, open-source alternative to WorkOS that | ||
brings enterprise readiness capabilities to your SaaS applications. It | ||
integrates with your tech stack no matter how bespoke. | ||
</p> | ||
<ul className="reset-list button-container"> | ||
<li> | ||
<DemoCTA /> | ||
</li> | ||
<li> | ||
<SignupCTA campaign="homepage" /> | ||
</li> | ||
</ul> | ||
</BaseHero> | ||
); | ||
}; | ||
|
||
export default HeroBoxyHQWorkOS; |
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,31 @@ | ||
.feature-comparison-table { | ||
display: table; | ||
margin: 0 auto; | ||
width: 90%; | ||
} | ||
|
||
@media only screen and (min-width: 63.9375rem) { | ||
.feature-comparison-table { | ||
padding: 0 var(--spacing-default); | ||
width: 95%; | ||
} | ||
} | ||
|
||
@media only screen and (min-width: 83.6875rem) { | ||
.feature-comparison-table { | ||
width: 100%; | ||
} | ||
} | ||
|
||
.feature-comparison-table th { | ||
text-align: left; | ||
width: calc(100% / 3); | ||
} | ||
|
||
.feature-comparison-table .icon-check::before { | ||
background-color: var(--color-teal-50); | ||
} | ||
|
||
.feature-comparison-table .icon-cross::before { | ||
background-color: var(--color-red-50); | ||
} |
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,8 @@ | ||
.girdle.compare-features { | ||
margin: var(--spacing-wide) auto; | ||
} | ||
|
||
.compare-features-heading { | ||
margin-bottom: var(--spacing-medium); | ||
text-align: center; | ||
} |
Oops, something went wrong.