forked from firecmsco/firecms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
225 additions
and
137 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"projects": { | ||
"default": "firecms-demo-27150" | ||
"default": "firecms-backend" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,6 +6,8 @@ import { EnterpriseFeatures } from "../partials/enterprise/EnterpriseFeatures"; | |
import { | ||
EnterpriseArchitectures | ||
} from "../partials/enterprise/EnterpriseArchitectures"; | ||
import { CTAButtonMixin, CTAOutlinedButtonWhiteMixin } from "../partials/utils"; | ||
import { Panel } from "../partials/general/Panel"; | ||
|
||
function Enterprise() { | ||
return ( | ||
|
@@ -17,8 +19,17 @@ function Enterprise() { | |
<EnterpriseHero/> | ||
<EnterpriseFeatures/> | ||
<EnterpriseArchitectures/> | ||
{/*<EnterpriseContact />*/} | ||
|
||
<Panel color={"primary"} centered={true}> | ||
<h2 className="h3 text-center mb-4"> | ||
Happy to help you build your next product | ||
</h2> | ||
<a href="mailto:[email protected]?subject=FireCMS%20consulting" | ||
rel="noopener noreferrer" | ||
target="_blank" | ||
className={CTAOutlinedButtonWhiteMixin + " mb-8"}> | ||
Get in touch | ||
</a> | ||
</Panel> | ||
</main> | ||
|
||
</div> | ||
|
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 |
---|---|---|
@@ -1,12 +1,9 @@ | ||
import React from "react"; | ||
|
||
import Layout from "@theme/Layout"; | ||
|
||
import Features from "../partials/features/Features"; | ||
import { Hero } from "../partials/general/Hero"; | ||
import { DeveloperFeatures } from "../partials/features/DeveloperFeatures"; | ||
import { VersionsComparison } from "../partials/pricing/VersionsComparison"; | ||
import { PricingIntro } from "../partials/pricing/PricingIntro"; | ||
import { SelfHosted } from "../partials/pricing/SelfHosted"; | ||
import { FireCMSCloudVersions } from "../partials/pricing/FireCMSCloudVersions"; | ||
|
||
function FeaturesPage() { | ||
|
@@ -23,7 +20,10 @@ function FeaturesPage() { | |
</>} | ||
subtitle={ | ||
<> | ||
<p>Experience the power of our CMS platform with a free, <b>self-hosted</b> option or upgrade to <b>FireCMS Cloud</b> for a premium, full-service solution.</p> | ||
<p>Experience the power of our CMS platform with a | ||
free, <b>self-hosted</b> option or upgrade to <b>FireCMS | ||
Cloud</b> for a premium, full-service solution. | ||
</p> | ||
</>} | ||
// cta={<a | ||
// href="mailto:[email protected]?subject=FireCMS%20consulting" | ||
|
@@ -35,7 +35,7 @@ function FeaturesPage() { | |
/> | ||
|
||
<FireCMSCloudVersions/> | ||
<PricingIntro/> | ||
<SelfHosted/> | ||
<VersionsComparison/> | ||
|
||
|
||
|
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,40 @@ | ||
import React from "react"; | ||
|
||
import useBaseUrl from "@docusaurus/useBaseUrl"; | ||
|
||
export function EnterpriseTeaser() { | ||
return ( | ||
<section | ||
className="relative "> | ||
<div | ||
className={"mx-auto px-4 sm:px-6 bg-primary text-white "}> | ||
<div | ||
className="relative flex flex-col items-center px-6 py-12"> | ||
<h4 className="h2 mb-4 text-white uppercase"> | ||
Enterprise? | ||
</h4> | ||
|
||
<div | ||
className="flex flex-col space-y-2 items-center text-lg"> | ||
<div className={"text-center mb-4"}> | ||
Learn how to get the most out of your | ||
project with the help of our consulting team. | ||
</div> | ||
<a href={useBaseUrl("enterprise")} | ||
className={"btn mx-auto sm:mb-0 py-4 bg-black text-white hover:text-white uppercase border border-solid w-full sm:w-auto rounded"}> | ||
Get in touch | ||
</a> | ||
</div> | ||
|
||
<div className="flex flex-wrap"> | ||
<div | ||
className="w-full py-2 border-b-2 border-gray-400 flex justify-between gap-2"> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
</section> | ||
) | ||
} |
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 |
---|---|---|
@@ -1,6 +1,11 @@ | ||
import React from "react"; | ||
import { ThreeColumns } from "../general/ThreeColumns"; | ||
import { CTAButtonMixin, CTACaret, CTAOutlinedButtonMixin } from "../utils"; | ||
import { | ||
ContainerMixin, | ||
CTAButtonMixin, | ||
CTACaret, | ||
CTAOutlinedButtonMixin | ||
} from "../utils"; | ||
|
||
export function FireCMSCloudVersions() { | ||
|
||
|
@@ -80,7 +85,7 @@ export function FireCMSCloudVersions() { | |
</div> | ||
<div className={"text-center mt-4 text-primary w-full"}> | ||
<a | ||
className={ CTAOutlinedButtonMixin} | ||
className={CTAOutlinedButtonMixin} | ||
href="mailto:[email protected]?subject=FireCMS%20Cloud%20Pro" | ||
rel="noopener noreferrer" | ||
target="_blank" | ||
|
@@ -92,19 +97,29 @@ export function FireCMSCloudVersions() { | |
</div> | ||
); | ||
|
||
return <section className={"flex flex-col items-center"}> | ||
return <section | ||
className={ContainerMixin + " flex flex-col items-center my-16 text-lg"}> | ||
|
||
<h2 className={"text-3xl md:text-4xl font-bold mb-2 text-center"}> | ||
FireCMS Cloud Versions | ||
<h2 className={"text-3xl md:text-4xl font-bold mb-4 text-center"}> | ||
Full no-code solution | ||
</h2> | ||
|
||
<p> | ||
<strong>FireCMS Cloud</strong> offers a complete, end-to-end | ||
solution for businesses that require the highest level of | ||
support and security. With dedicated hosting, advanced features, and | ||
expert support, you'll have everything you need to take your project | ||
to the next level. | ||
</p> | ||
|
||
<ThreeColumns | ||
left={freeTier} | ||
center={plusTier} | ||
right={proTier} | ||
/> | ||
|
||
<a | ||
className={ CTAButtonMixin} | ||
className={CTAButtonMixin} | ||
href="http://app.firecms.co" | ||
rel="noopener noreferrer" | ||
target="_blank" | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.