Skip to content

Commit

Permalink
fix(website): Add enterprise features section.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanieJKS committed Apr 25, 2023
1 parent 458e92c commit 39d63dc
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 4 deletions.
33 changes: 33 additions & 0 deletions packages/website/pages/home/components/info_box.yaml.njk
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
id: {{ section }}_info_box
type: Box
layout:
_var:
key: layout
default:
span: 12
contentGutter: 8
blocks:
- id: {{ section }}_icon
type: Icon
properties:
_var: icon
- id: {{ section }}_info
type: Html
properties:
html: |
<h3>{{ title }}</h3>
<p>{{ info }}</p>
- id: {{ section }}_link
type: Button
style:
marginBottom: 20px
properties:
title: {{ link.title }}
type: link
size: large
icon: AiOutlineArrowRight
style:
maxWidth: 100%
whiteSpace: normal
textAlign: left
href: {{ link.href }}
8 changes: 4 additions & 4 deletions packages/website/pages/home/home.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ properties:
blocks:
- _ref: shared/header/header.yaml
- _ref: pages/home/sections/hero.yaml
- _ref: pages/home/sections/cta_top.yaml
- _ref: pages/home/sections/customers.yaml
- _ref: pages/home/sections/build_uis.yaml
- _ref: pages/home/sections/connect.yaml
- _ref: pages/home/sections/plugins.yaml
- _ref: pages/home/sections/create_faster.yaml
- _ref: pages/home/sections/open_source.yaml
- _ref: pages/home/sections/plugins.yaml
- _ref: pages/home/sections/enterprise_features.yaml
- _ref: pages/home/sections/cta_top.yaml
- _ref: pages/home/sections/examples.yaml
- _ref: pages/home/sections/customers.yaml
- _ref: pages/home/sections/create_app.yaml
- _ref: shared/footer/footer.yaml
79 changes: 79 additions & 0 deletions packages/website/pages/home/sections/enterprise_features.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
id: width_box
type: Box
layout:
contentGutter: 16
style:
maxWidth: 90%
margin: 60px auto
blocks:
- id: enterprise_features_title
type: Html
layout:
span: 6
style:
textAlign: right
properties:
html: |
<hr style="margin-right:0;">
<h2>
Built for Developers and Enterprise Ready
</h2>
- id: enterprise_features_info
type: Box
layout:
span: 18
contentGutter: 16
blocks:
- _ref:
path: pages/home/components/info_box.yaml.njk
vars:
icon:
name: BsFillCloudArrowUpFill
size: 20
color: '#1890ff'
section: deploy
title: Deploy Anywhere
info: In production, Lowdefy runs as a Next.js app so you can deploy Lowdefy anywhere that supports Next.js deployment. Deploy with Vercel, Docker and more.
link:
title: See the deployment instructions
href: https://docs.lowdefy.com/docker
- _ref:
path: pages/home/components/info_box.yaml.njk
vars:
icon:
name: AiFillLock
size: 20
color: '#1890ff'
section: secure
title: Secured with Auth.js
info: Authentication is built on top of Auth.js, providing the full flexibility and security from one of the most popular open-source auth layers. SSO, SAML, 2FA, no problem. Google, Okta, Auth0 and more - bring your own provider.
link:
title: Visit the auth docs for more about auth
href: https://docs.lowdefy.com/users-introduction
- _ref:
path: pages/home/components/info_box.yaml.njk
vars:
icon:
name: FiCheckCircle
size: 20
color: '#1890ff'
section: git_control
title: Git Control for Humans
info: Lowdefy minimal config was designed to be easy to read, write and understand. This makes it easy to copy, paste, review changes or pick up where others left off. Defining apps using a structured schema speeds up development in teams big and small.
link:
title: Read more about the Lowdefy app schema
href: https://docs.lowdefy.com/lowdefy-schema
- _ref:
path: pages/home/components/info_box.yaml.njk
vars:
icon:
name: MdPeopleAlt
size: 20
color: '#1890ff'
section: user_roles
title: Public, Authed and Roles
info: Building multipage apps with both public and private pages serves a wide range of use cases. Adding role-based access control (RBAC) to this gives Lowdefy developers the power to easily implement secure granular access control where needed.
link:
title: Learn more about user roles
href: https://docs.lowdefy.com/roles

0 comments on commit 39d63dc

Please sign in to comment.