From 54d0e3167d0a28136fb2a00d5585a5e84c71775c Mon Sep 17 00:00:00 2001 From: TheHadiAhmadi Date: Tue, 29 Oct 2024 12:01:12 +0000 Subject: [PATCH] #2179 start working on shop template --- .../Templates/Shop/AdminLayout.body.html | 109 +++++ .../Templates/Shop/AdminLayout.head.html | 51 ++ src/FluentCMS/Templates/Shop/AdminLayout.html | 1 + .../Templates/Shop/AuthLayout.body.html | 29 ++ .../Templates/Shop/AuthLayout.head.html | 45 ++ src/FluentCMS/Templates/Shop/AuthLayout.html | 1 + .../Templates/Shop/Blocks/CTA/Default.html | 32 ++ .../Shop/Blocks/CTA/Image and Button.html | 26 + .../Templates/Shop/Blocks/CTA/Mobile App.html | 43 ++ .../Shop/Blocks/CTA/With Heading.html | 16 + .../Templates/Shop/Blocks/CTA/With Image.html | 27 ++ .../Templates/Shop/Blocks/Content/Simple.html | 31 ++ .../Shop/Blocks/Content/With Gallery.html | 25 + .../Shop/Blocks/Content/With Image.html | 23 + .../Shop/Blocks/Customer Logos/Default.html | 133 ++++++ .../Templates/Shop/Blocks/FAQ/Default.html | 183 ++++++++ .../Shop/Blocks/Feature/Default.html | 117 +++++ .../Templates/Shop/Blocks/Footer/Default.html | 115 +++++ .../Blocks/Footer/With Sitemap & Social.html | 112 +++++ .../Templates/Shop/Blocks/Headers/Header.html | 153 ++++++ .../Templates/Shop/Blocks/Hero/Default.html | 114 +++++ .../Shop/Blocks/Hero/Visual Image.html | 32 ++ .../Shop/Blocks/Pricing/Default.html | 249 ++++++++++ .../Shop/Blocks/Schedule/Default.html | 159 +++++++ .../Blocks/Social Proof/Card Statistics.html | 49 ++ .../Shop/Blocks/Social Proof/Default.html | 18 + .../Blocks/Social Proof/Icon Statistics.html | 94 ++++ .../Templates/Shop/Blocks/Teams/Card.html | 233 +++++++++ .../Templates/Shop/Blocks/Teams/Clean.html | 389 +++++++++++++++ .../Shop/Blocks/Testimonials/Cards.html | 129 +++++ .../Shop/Blocks/Testimonials/Default.html | 27 ++ .../Templates/Shop/DefaultLayout.body.html | 132 ++++++ .../Templates/Shop/DefaultLayout.head.html | 51 ++ .../Templates/Shop/DefaultLayout.html | 1 + .../Templates/Shop/EditLayout.body.html | 9 + .../Templates/Shop/EditLayout.head.html | 51 ++ src/FluentCMS/Templates/Shop/EditLayout.html | 1 + .../Templates/Shop/SingleLayout.body.html | 168 +++++++ .../Templates/Shop/SingleLayout.head.html | 51 ++ .../Templates/Shop/SingleLayout.html | 0 src/FluentCMS/Templates/Shop/manifest.json | 433 +++++++++++++++++ src/FluentCMS/Templates/Shop/site.json | 444 ++++++++++++++++++ 42 files changed, 4106 insertions(+) create mode 100644 src/FluentCMS/Templates/Shop/AdminLayout.body.html create mode 100644 src/FluentCMS/Templates/Shop/AdminLayout.head.html create mode 100644 src/FluentCMS/Templates/Shop/AdminLayout.html create mode 100644 src/FluentCMS/Templates/Shop/AuthLayout.body.html create mode 100644 src/FluentCMS/Templates/Shop/AuthLayout.head.html create mode 100644 src/FluentCMS/Templates/Shop/AuthLayout.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/CTA/Default.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/CTA/Image and Button.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/CTA/Mobile App.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/CTA/With Heading.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/CTA/With Image.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Content/Simple.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Content/With Gallery.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Content/With Image.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Customer Logos/Default.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/FAQ/Default.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Feature/Default.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Footer/Default.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Footer/With Sitemap & Social.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Headers/Header.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Hero/Default.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Hero/Visual Image.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Pricing/Default.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Schedule/Default.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Social Proof/Card Statistics.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Social Proof/Default.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Social Proof/Icon Statistics.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Teams/Card.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Teams/Clean.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Testimonials/Cards.html create mode 100644 src/FluentCMS/Templates/Shop/Blocks/Testimonials/Default.html create mode 100644 src/FluentCMS/Templates/Shop/DefaultLayout.body.html create mode 100644 src/FluentCMS/Templates/Shop/DefaultLayout.head.html create mode 100644 src/FluentCMS/Templates/Shop/DefaultLayout.html create mode 100644 src/FluentCMS/Templates/Shop/EditLayout.body.html create mode 100644 src/FluentCMS/Templates/Shop/EditLayout.head.html create mode 100644 src/FluentCMS/Templates/Shop/EditLayout.html create mode 100644 src/FluentCMS/Templates/Shop/SingleLayout.body.html create mode 100644 src/FluentCMS/Templates/Shop/SingleLayout.head.html create mode 100644 src/FluentCMS/Templates/Shop/SingleLayout.html create mode 100644 src/FluentCMS/Templates/Shop/manifest.json create mode 100644 src/FluentCMS/Templates/Shop/site.json diff --git a/src/FluentCMS/Templates/Shop/AdminLayout.body.html b/src/FluentCMS/Templates/Shop/AdminLayout.body.html new file mode 100644 index 000000000..e4d16ac9c --- /dev/null +++ b/src/FluentCMS/Templates/Shop/AdminLayout.body.html @@ -0,0 +1,109 @@ + +
+ + +
+
+ +
+
+
+ + + diff --git a/src/FluentCMS/Templates/Shop/AdminLayout.head.html b/src/FluentCMS/Templates/Shop/AdminLayout.head.html new file mode 100644 index 000000000..aaf664310 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/AdminLayout.head.html @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/FluentCMS/Templates/Shop/AdminLayout.html b/src/FluentCMS/Templates/Shop/AdminLayout.html new file mode 100644 index 000000000..5f282702b --- /dev/null +++ b/src/FluentCMS/Templates/Shop/AdminLayout.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/AuthLayout.body.html b/src/FluentCMS/Templates/Shop/AuthLayout.body.html new file mode 100644 index 000000000..891e6fe97 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/AuthLayout.body.html @@ -0,0 +1,29 @@ +
+
+
+
+
+
+
+ +
+
+
+
+ + FluentCMS Logo + +

+ Welcome to FluentCMS +

+

+ Building and managing content has never been easier. Experience the power of AI with FluentCMS. +

+
+
+
+
+ + + + \ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/AuthLayout.head.html b/src/FluentCMS/Templates/Shop/AuthLayout.head.html new file mode 100644 index 000000000..9aee8a359 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/AuthLayout.head.html @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/FluentCMS/Templates/Shop/AuthLayout.html b/src/FluentCMS/Templates/Shop/AuthLayout.html new file mode 100644 index 000000000..5f282702b --- /dev/null +++ b/src/FluentCMS/Templates/Shop/AuthLayout.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/CTA/Default.html b/src/FluentCMS/Templates/Shop/Blocks/CTA/Default.html new file mode 100644 index 000000000..74c4b2efb --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/CTA/Default.html @@ -0,0 +1,32 @@ +
+
+
+

+ Let's find more that brings us together. +

+

+ FluentCMS helps + you connect with friends, family and communities of people who share your interests. Connecting with + your friends and family as well as discovering new ones is easy with features like Groups, Watch and + Marketplace. +

+ +
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/CTA/Image and Button.html b/src/FluentCMS/Templates/Shop/Blocks/CTA/Image and Button.html new file mode 100644 index 000000000..f93fe2f29 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/CTA/Image and Button.html @@ -0,0 +1,26 @@ +
+
+ dashboard image + +
+

+ Let's create more + tools and ideas that brings us together. +

+

+ FluentCMS helps you connect with + friends and communities of people who share your interests. Connecting with your friends and family + as well as discovering new ones is easy with features like Groups.

+ + Get started + + + + +
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/CTA/Mobile App.html b/src/FluentCMS/Templates/Shop/Blocks/CTA/Mobile App.html new file mode 100644 index 000000000..5c16b4cff --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/CTA/Mobile App.html @@ -0,0 +1,43 @@ +
+
+
+

+ Build your site, your way with FluentCMS. +

+

+ FluentCMS + empowers creators and businesses to easily build and manage websites with intuitive tools, customizable + features, and seamless user experiences. +

+ +
+ +
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/CTA/With Heading.html b/src/FluentCMS/Templates/Shop/Blocks/CTA/With Heading.html new file mode 100644 index 000000000..4727fdad8 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/CTA/With Heading.html @@ -0,0 +1,16 @@ +
+
+
+

+ Start your free trial today +

+

+ Try FluentCMS Platform for 30 days. No credit card required. +

+ Free trial for 30 days +
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/CTA/With Image.html b/src/FluentCMS/Templates/Shop/Blocks/CTA/With Image.html new file mode 100644 index 000000000..e653d1f99 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/CTA/With Image.html @@ -0,0 +1,27 @@ +
+
+ dashboard image + +
+

+ Let's create more tools and ideas that brings us together. +

+

+ FluentCMS helps you connect with friends and communities of people who share your interests. Connecting + with your friends and family as well as discovering new ones is easy with features like Groups. +

+ + + Get started + + + + + +
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Content/Simple.html b/src/FluentCMS/Templates/Shop/Blocks/Content/Simple.html new file mode 100644 index 000000000..20ed4dc7b --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Content/Simple.html @@ -0,0 +1,31 @@ +
+
+
+

+ Powering innovation at + 200,000+ + companies worldwide +

+

+ Track work across the enterprise through an open, + collaborative platform. Link issues across Jira and ingest data from other software development tools, + so your IT support and operations teams have richer contextual information to rapidly respond to + requests, incidents, and changes. +

+

+ Deliver great service experiences fast - without the + complexity of traditional ITSM solutions.Accelerate critical development work, eliminate toil, and + deploy changes with ease. +

+ + Learn more + + + + +
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Content/With Gallery.html b/src/FluentCMS/Templates/Shop/Blocks/Content/With Gallery.html new file mode 100644 index 000000000..9a2518234 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Content/With Gallery.html @@ -0,0 +1,25 @@ +
+
+

+ FluentCMS: Built for Simplicity and Power +

+

+ FluentCMS combines flexibility and ease of use, allowing creators, businesses, and developers to efficiently + manage content. From simple sites to complex projects, it’s the CMS that grows with your needs. +

+
+ content gallery 1 + + + + content gallery 5 + +
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Content/With Image.html b/src/FluentCMS/Templates/Shop/Blocks/Content/With Image.html new file mode 100644 index 000000000..c51bb4d86 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Content/With Image.html @@ -0,0 +1,23 @@ +
+
+
+

+ We didn't reinvent the wheel +

+

+ We are strategists, designers and developers. Innovators and problem + solvers. Small enough to be simple and quick, but big enough to deliver the scope you want at the pace + you need. Small enough to be simple and quick, but big enough to deliver the scope you want at the pace + you need. +

+

+ We are strategists, designers and developers. Innovators and problem solvers. Small + enough to be simple and quick. +

+
+
+ office content 1 + office content 2 +
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Customer Logos/Default.html b/src/FluentCMS/Templates/Shop/Blocks/Customer Logos/Default.html new file mode 100644 index 000000000..a1d94ef04 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Customer Logos/Default.html @@ -0,0 +1,133 @@ +
+ +
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/FAQ/Default.html b/src/FluentCMS/Templates/Shop/Blocks/FAQ/Default.html new file mode 100644 index 000000000..1df196ed1 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/FAQ/Default.html @@ -0,0 +1,183 @@ +
+
+

+ Frequently asked questions +

+
+
+
+

+ + + + What do you mean by "Figma assets"? +

+

+ You will have access to download the full Figma project + including all of the pages, the components, responsive pages, and also the icons, illustrations, + and images included in the screens. +

+
+
+

+ + + + What does "lifetime access" exactly mean? +

+

+ Once you have purchased either the design, code, or both + packages, you will have access to all of the future updates based on the roadmap, free of + charge. +

+
+
+

+ + + + How does support work? +

+

+ We're aware of the importance of well qualified support, + that is why we decided that support will only be provided by the authors that actually worked on + this project. +

+

+ Feel free to + contact us + and we'll help you out as soon as we can. +

+
+
+

+ + + + I want to build more than one project. Is that allowed? +

+

+ You can use FluentCMS for an unlimited amount of + projects, whether it's a personal website, a SaaS app, or a website for a client. As long as you + don't build a product that will directly compete with FluentCMS either as a UI kit, theme, or + template, it's fine. +

+

+ Find out more information by + reading the license + . +

+
+
+
+
+

+ + + + What does "free updates" include? +

+

+ The free updates that will be + provided is based on the + + roadmap + + that we have laid out for this project. It is also possible that we will provide extra updates + outside of the roadmap as well. +

+
+
+

+ + + + What does the free version include? +

+

The + + free version + + of FluentCMS includes a minimal style guidelines, component variants, and a + dashboard page with the mobile version alongside it. +

+

+ You can use this version for any purposes, because it is + open-source under the MIT license. +

+
+
+

+ + + + What is the difference between FluentCMS and Tailwind UI? +

+

+ Although both FluentCMS and Tailwind + UI are built for + integration with Tailwind CSS, the main difference is in the design, the pages, the extra + components and UI elements that FluentCMS includes. +

+

+ Additionally, FluentCMS is a project that is still in + development, and later it will include both the application, marketing, and e-commerce UI + interfaces. +

+
+
+

+ + + + Can I use FluentCMS in open-source projects? +

+

+ Generally, it is accepted to use FluentCMS in open-source + projects, as long as it is not a UI library, a theme, a template, a page-builder that would be + considered as an alternative to FluentCMS itself. +

+

+ With that being said, feel free to use this design kit + for your open-source projects. +

+

+ Find out more information by + reading the license + . +

+
+
+
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Feature/Default.html b/src/FluentCMS/Templates/Shop/Blocks/Feature/Default.html new file mode 100644 index 000000000..d1b78ebe2 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Feature/Default.html @@ -0,0 +1,117 @@ +
+
+
+

+ Designed for business teams like yours +

+

+ Here at FluentCMS we focus on markets where technology, innovation, and capital can unlock long-term + value and drive economic growth. +

+
+
+
+
+ + + +
+

Marketing

+

+ Plan it, create it, launch it. Collaborate seamlessly with all the organization and hit your + marketing goals every month with our marketing plan. +

+
+
+
+ + + + +
+

Legal

+

+ Protect your organization, devices and stay compliant with our structured workflows and custom + permissions made for you. +

+
+
+
+ + + + + +
+

Business Automation

+

+ Auto-assign tasks, send Slack messages, and much more. Now power up with hundreds of new templates + to help you get started. +

+
+
+
+ + + + + +
+

Finance

+

+ Audit-proof software built for critical financial operations like month-end close and quarterly + budgeting. +

+
+
+
+ + + + +
+

Enterprise Design

+

+ Craft beautiful, delightful experiences for both marketing and product with real cross-company + collaboration. +

+
+
+
+ + + +
+

Operations

+

+ Keep your company’s lights on with customizable, iterative, and structured workflows built for all + efficient teams and individual. +

+
+
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Footer/Default.html b/src/FluentCMS/Templates/Shop/Blocks/Footer/Default.html new file mode 100644 index 000000000..76d7c70a8 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Footer/Default.html @@ -0,0 +1,115 @@ + \ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Footer/With Sitemap & Social.html b/src/FluentCMS/Templates/Shop/Blocks/Footer/With Sitemap & Social.html new file mode 100644 index 000000000..51e610e49 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Footer/With Sitemap & Social.html @@ -0,0 +1,112 @@ + \ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Headers/Header.html b/src/FluentCMS/Templates/Shop/Blocks/Headers/Header.html new file mode 100644 index 000000000..3215dd9fe --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Headers/Header.html @@ -0,0 +1,153 @@ +
+ +
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Hero/Default.html b/src/FluentCMS/Templates/Shop/Blocks/Hero/Default.html new file mode 100644 index 000000000..eb9fd8a35 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Hero/Default.html @@ -0,0 +1,114 @@ +
+
+ + + New + + + FluentCMS is out! See what's new + + + + + +

+ We invest in the world's potential +

+

+ Here at FluentCMS we focus on markets where technology, innovation, and capital can unlock long-term value + and drive economic growth. +

+ + +
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Hero/Visual Image.html b/src/FluentCMS/Templates/Shop/Blocks/Hero/Visual Image.html new file mode 100644 index 000000000..df6bbf56a --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Hero/Visual Image.html @@ -0,0 +1,32 @@ +
+
+
+

+ Payments tool for software companies +

+

+ From checkout to global sales tax compliance, companies around the world use + FluentCMS to simplify their payment stack. +

+ + Get started + + + + + + Speak to Sales + +
+ +
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Pricing/Default.html b/src/FluentCMS/Templates/Shop/Blocks/Pricing/Default.html new file mode 100644 index 000000000..c1acf1343 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Pricing/Default.html @@ -0,0 +1,249 @@ +
+
+
+

+ Designed for business teams like yours +

+

+ Here at FluentCMS we focus on markets where technology, innovation, and capital can unlock long-term + value and drive economic growth. +

+
+
+ +
+

Starter

+

+ Best option for personal use & for your next project. +

+
+ $29 + /month +
+ +
    +
  • + + + + + Individual configuration +
  • +
  • + + + + + No setup, or hidden fees +
  • +
  • + + + + + + Team size: + 1 developer + +
  • +
  • + + + + + + Premium support: + 6 months + +
  • +
  • + + + + + + Free updates: + 6 months + +
  • +
+ + Get started + +
+ +
+

Company

+

+ Relevant for multiple users, extended & premium support. +

+
+ $99 + /month +
+ +
    +
  • + + + + + Individual configuration +
  • +
  • + + + + + No setup, or hidden fees +
  • +
  • + + + + + + Team size: + 10 developers + +
  • +
  • + + + + + + Premium support: + 24 months + +
  • +
  • + + + + + + Free updates: + 24 months + +
  • +
+ + Get started + +
+ +
+

Enterprise

+

+ Best for large scale uses and extended redistribution rights. +

+
+ $499 + /month +
+ +
    +
  • + + + + + Individual configuration +
  • +
  • + + + + + No setup, or hidden fees +
  • +
  • + + + + + + Team size: + 100+ developers + +
  • +
  • + + + + + + Premium support: + 36 months + +
  • +
  • + + + + + + Free updates: + 36 months + +
  • +
+ + Get started + +
+
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Schedule/Default.html b/src/FluentCMS/Templates/Shop/Blocks/Schedule/Default.html new file mode 100644 index 000000000..e4b426e37 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Schedule/Default.html @@ -0,0 +1,159 @@ +
+ +
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Social Proof/Card Statistics.html b/src/FluentCMS/Templates/Shop/Blocks/Social Proof/Card Statistics.html new file mode 100644 index 000000000..60f754631 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Social Proof/Card Statistics.html @@ -0,0 +1,49 @@ +
+
+
+

+ Success Metrics +

+

+ Key achievements that highlight our impact on efficiency and growth. +

+
+
+
+

40%

+

Setup Speed

+

+ Boost in developer onboarding speed + * +

+
+
+

500%

+

+ Efficiency Growth +

+

+ Across key workflows over time + * +

+
+
+

1 Hour+

+

+ Daily Time Saved +

+

+ For each developer in daily tasks + * +

+
+
+

+ * + Data based on team performance over multiple projects. +

+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Social Proof/Default.html b/src/FluentCMS/Templates/Shop/Blocks/Social Proof/Default.html new file mode 100644 index 000000000..97a72da13 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Social Proof/Default.html @@ -0,0 +1,18 @@ +
+
+
+
+
73M+
+
developers
+
+
+
1B+
+
contributors
+
+
+
4M+
+
organizations
+
+
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Social Proof/Icon Statistics.html b/src/FluentCMS/Templates/Shop/Blocks/Social Proof/Icon Statistics.html new file mode 100644 index 000000000..acc4de6dc --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Social Proof/Icon Statistics.html @@ -0,0 +1,94 @@ +
+
+
+

+ Globally Recognized +

+

+ Used by over 600 million users and 10,000 teams +

+

+ Our top-tier security and compliance are integral to every service. We work diligently to safeguard your + interests and those of your customers. +

+ +
+
+
+ + + +

99.99% Uptime

+

+ Consistently available with no maintenance downtime. +

+
+
+ + + + +

600M+ Users

+

+ Trusted by millions globally. +

+
+
+ + + +

100+ Countries

+

+ Creating websites across the globe. +

+
+
+ + + + +

5+ Million

+

+ Transactions processed daily. +

+
+
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Teams/Card.html b/src/FluentCMS/Templates/Shop/Blocks/Teams/Card.html new file mode 100644 index 000000000..e55a6207d --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Teams/Card.html @@ -0,0 +1,233 @@ +
+
+
+

+ Our Team +

+

+ Explore the whole collection of open-source web components and elements built with the utility classes + from Tailwind +

+
+
+
+ + Bonnie Avatar + +
+

+ + Bonnie Green + +

+ CEO & Web Developer +

+ Bonnie drives the technical strategy of the FluentCMS platform and brand. +

+ +
+
+
+ + Jese Avatar + +
+

+ + Jese Leos + +

+ CTO +

+ Jese drives the technical strategy of the FluentCMS platform and brand. +

+ +
+
+
+ + Michael Avatar + +
+

+ + Michael Gough + +

+ + Senior Front-end Developer + +

+ Michael drives the technical strategy of the FluentCMS platform and brand. +

+ +
+
+
+ + Sofia Avatar + +
+

+ + Lana Byrd + +

+ Marketing & Sale +

+ Lana drives the technical strategy of the FluentCMS platform and brand. +

+ +
+
+
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Teams/Clean.html b/src/FluentCMS/Templates/Shop/Blocks/Teams/Clean.html new file mode 100644 index 000000000..e2a5da3cd --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Teams/Clean.html @@ -0,0 +1,389 @@ +
+
+
+

+ Our team +

+

+ Explore the whole collection of open-source web components and elements built with the utility classes + from Tailwind +

+
+
+
+ Bonnie Avatar +

+ + Bonnie Green + +

+

CEO/Co-founder

+ +
+
+ Helene Avatar +

+ + Helene Engels + +

+

CTO/Co-founder

+ +
+
+ Jese Avatar +

+ + Jese Leos + +

+

SEO & Marketing

+ +
+
+ Joseph Avatar +

+ + Joseph Mcfall + +

+

Sales

+ +
+
+ Sofia Avatar +

+ + Lana Byrd + +

+

Web Designer

+ +
+
+ Leslie Avatar +

+ + Leslie Livingston + +

+

Graphic Designer

+ +
+
+ Michael Avatar +

+ + Michael Gough + +

+

React Developer

+ +
+
+ Neil Avatar +

+ + Neil Sims + +

+

Vue.js Developer

+ +
+
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Testimonials/Cards.html b/src/FluentCMS/Templates/Shop/Blocks/Testimonials/Cards.html new file mode 100644 index 000000000..9db63b51c --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Testimonials/Cards.html @@ -0,0 +1,129 @@ +
+
+
+

+ Testimonials +

+

+ Explore the whole collection of open-source web components and elements built with the utility classes + from Tailwind +

+
+
+
+
+

+ Speechless with how easy this was to integrate +

+

+ "I recently got my hands on FluentCMS Pro, and holy crap, I'm speechless with how easy this was + to integrate within my application. Most templates are a pain, code is scattered, and near + impossible to theme. +

+

+ FluentCMS has code in one place and I'm not joking when I say it took me a matter of minutes to + copy the code, customise it and integrate within a Laravel + Vue application. +

+

+ If you care for your time, I hands down would go with this." +

+
+
+ profile picture +
+
Bonnie Green
+
+ Developer at Open AI +
+
+
+
+
+
+

+ Solid foundation for any project +

+

+ "FluentCMS provides a robust set of design tokens and components based on the popular Tailwind + CSS framework. From the most used UI components like forms and navigation bars to the whole app + screens designed both for desktop and mobile, this UI kit provides a solid foundation for any + project. +

+

+ Designing with Figma components that can be easily translated to the utility classes of Tailwind + CSS is a huge timesaver!" +

+
+
+ profile picture +
+
Roberta Casas
+
+ Lead designer at Dropbox +
+
+
+
+
+
+

+ Mindblowing workflow and variants +

+

+ "As someone who mainly designs in the browser, I've been a casual user of Figma, but as soon as + I saw and started playing with FluentCMS my mind was 🤯. +

+

+ Everything is so well structured and simple to use (I've learnt so much about Figma by just + using the toolkit). +

+

+ Aesthetically, the well designed components are beautiful and will undoubtedly level up your + next application." +

+
+
+ profile picture +
+
Jese Leos
+
+ Software Engineer at Facebook +
+
+
+
+
+
+

+ Efficient Collaborating +

+

+ "This is a very complex and beautiful set of elements. Under the hood it comes with the best + things from 2 different worlds: Figma and Tailwind. +

+

+ You have many examples that can be used to create a fast prototype for your team." +

+
+
+ profile picture +
+
Joseph McFall
+
+ CTO at Google +
+
+
+
+
+ +
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/Blocks/Testimonials/Default.html b/src/FluentCMS/Templates/Shop/Blocks/Testimonials/Default.html new file mode 100644 index 000000000..8ab2bafbd --- /dev/null +++ b/src/FluentCMS/Templates/Shop/Blocks/Testimonials/Default.html @@ -0,0 +1,27 @@ +
+
+
+ + + +
+

+ "Flowbite is just awesome. It contains tons of predesigned components and pages starting from login + screen to complex dashboard. Perfect choice for your next SaaS application." +

+
+
+ profile picture +
+
Micheal Gough
+
+ CEO at Google +
+
+
+
+
+
\ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/DefaultLayout.body.html b/src/FluentCMS/Templates/Shop/DefaultLayout.body.html new file mode 100644 index 000000000..69a376bee --- /dev/null +++ b/src/FluentCMS/Templates/Shop/DefaultLayout.body.html @@ -0,0 +1,132 @@ +
+ +
+
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/DefaultLayout.head.html b/src/FluentCMS/Templates/Shop/DefaultLayout.head.html new file mode 100644 index 000000000..aaf664310 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/DefaultLayout.head.html @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/FluentCMS/Templates/Shop/DefaultLayout.html b/src/FluentCMS/Templates/Shop/DefaultLayout.html new file mode 100644 index 000000000..5f282702b --- /dev/null +++ b/src/FluentCMS/Templates/Shop/DefaultLayout.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/EditLayout.body.html b/src/FluentCMS/Templates/Shop/EditLayout.body.html new file mode 100644 index 000000000..02dd6d152 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/EditLayout.body.html @@ -0,0 +1,9 @@ +
+
+ +
+
+ + + + \ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/EditLayout.head.html b/src/FluentCMS/Templates/Shop/EditLayout.head.html new file mode 100644 index 000000000..aaf664310 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/EditLayout.head.html @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/FluentCMS/Templates/Shop/EditLayout.html b/src/FluentCMS/Templates/Shop/EditLayout.html new file mode 100644 index 000000000..5f282702b --- /dev/null +++ b/src/FluentCMS/Templates/Shop/EditLayout.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/SingleLayout.body.html b/src/FluentCMS/Templates/Shop/SingleLayout.body.html new file mode 100644 index 000000000..97c7eda45 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/SingleLayout.body.html @@ -0,0 +1,168 @@ +
+ +
+ +
+
+ +
+
+ + + + + + \ No newline at end of file diff --git a/src/FluentCMS/Templates/Shop/SingleLayout.head.html b/src/FluentCMS/Templates/Shop/SingleLayout.head.html new file mode 100644 index 000000000..6e2b1096e --- /dev/null +++ b/src/FluentCMS/Templates/Shop/SingleLayout.head.html @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/FluentCMS/Templates/Shop/SingleLayout.html b/src/FluentCMS/Templates/Shop/SingleLayout.html new file mode 100644 index 000000000..e69de29bb diff --git a/src/FluentCMS/Templates/Shop/manifest.json b/src/FluentCMS/Templates/Shop/manifest.json new file mode 100644 index 000000000..4e2c64220 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/manifest.json @@ -0,0 +1,433 @@ +{ + "GlobalSettings": { + "FileUpload": { + "MaxSize": 5242880, + "AllowedExtensions": "jpg,jpeg,png,gif,doc,docx,pdf,txt", + "MaxCount": 5 + } + }, + "PluginDefinitions": [ + { + "Name": "Login", + "Category": "Auth", + "Description": "Login Plugin", + "Locked": true, + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Types": [ + { + "Name": "Login", + "Type": "LoginViewPlugin", + "IsDefault": true + } + ] + }, + { + "Name": "Logout", + "Category": "Auth", + "Locked": true, + "Description": "Logout Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Types": [ + { + "Name": "Logout", + "Type": "LogoutViewPlugin", + "IsDefault": true + } + ] + }, + { + "Name": "Register", + "Category": "Auth", + "Locked": true, + "Description": "Register Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Types": [ + { + "Name": "Regsiter", + "Type": "RegisterViewPlugin", + "IsDefault": true + } + ] + }, + { + "Name": "Forgot Password", + "Category": "Auth", + "Locked": true, + "Description": "Forgot Password Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Types": [ + { + "Name": "Forgot Password", + "Type": "ForgotPasswordViewPlugin", + "IsDefault": true + } + ] + }, + { + "Name": "Reset Password", + "Category": "Auth", + "Locked": true, + "Description": "Reset Password Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Types": [ + { + "Name": "Reset Password", + "Type": "ResetPasswordViewPlugin", + "IsDefault": true + } + ] + }, + { + "Name": "Api Token Management", + "Category": "Admin", + "Description": "Api Token Management Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "Api Token List", + "Type": "ApiTokenListPlugin", + "IsDefault": true + }, + { + "Name": "Create Api Token", + "Type": "ApiTokenCreatePlugin" + }, + { + "Name": "Update Api Token", + "Type": "ApiTokenUpdatePlugin" + } + ] + }, + { + "Name": "User Management", + "Category": "Admin", + "Description": "Users Management Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "Users List", + "Type": "UserListPlugin", + "IsDefault": true + }, + { + "Name": "Create User", + "Type": "UserCreatePlugin" + }, + { + "Name": "Update User", + "Type": "UserUpdatePlugin" + } + ] + }, + { + "Name": "Block Management", + "Category": "Admin", + "Description": "Block Management Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "Blocks List", + "Type": "BlockListPlugin", + "IsDefault": true + }, + { + "Name": "Create Block", + "Type": "BlockCreatePlugin" + }, + { + "Name": "Update Block", + "Type": "BlockUpdatePlugin" + } + ] + }, + { + "Name": "Site Management", + "Category": "Admin", + "Description": "Site Management Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "Sites List", + "Type": "SiteListPlugin", + "IsDefault": true + }, + { + "Name": "Create Site", + "Type": "SiteCreatePlugin" + }, + { + "Name": "Update Site", + "Type": "SiteUpdatePlugin" + } + ] + }, + { + "Name": "Page Management", + "Category": "Admin", + "Description": "Page Management Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "Pages List", + "Type": "PageListPlugin", + "IsDefault": true + }, + { + "Name": "Create Page", + "Type": "PageCreatePlugin" + }, + { + "Name": "Update Page", + "Type": "PageUpdatePlugin" + } + ] + }, + { + "Name": "Plugin Definition Management", + "Category": "Admin", + "Description": "Plugin Definition Management Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "Definitions List", + "Type": "DefinitionListPlugin", + "IsDefault": true + } + ] + }, + { + "Name": "File Management", + "Category": "Admin", + "Description": "File Management Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "Files List", + "Type": "FileListPlugin", + "IsDefault": true + } + ] + }, + { + "Name": "ContentType Management", + "Category": "Admin", + "Description": "ContentTypes Management Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "ContentTypes List", + "Type": "ContentTypeListPlugin", + "IsDefault": true + }, + { + "Name": "Create ContentType", + "Type": "ContentTypeCreatePlugin" + }, + { + "Name": "Update ContentType", + "Type": "ContentTypeUpdatePlugin" + }, + { + "Name": "View ContentType", + "Type": "ContentTypeDetailPlugin" + }, + { + "Name": "Contents List", + "Type": "ContentListPlugin", + "IsDefault": true + }, + { + "Name": "Create Content", + "Type": "ContentCreatePlugin" + }, + { + "Name": "Update Content", + "Type": "ContentUpdatePlugin" + } + ] + }, + { + "Name": "Role Management", + "Category": "Admin", + "Description": "Role Management Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "Roles List", + "Type": "RoleListPlugin", + "IsDefault": true + }, + { + "Name": "Create Role", + "Type": "RoleCreatePlugin" + }, + { + "Name": "Update Role", + "Type": "RoleUpdatePlugin" + } + ] + }, + { + "Name": "Profile", + "Category": "Auth", + "Description": "Profile Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "Update", + "Type": "ProfileUpdatePlugin", + "IsDefault": true + } + ] + }, + { + "Name": "Layout Management", + "Category": "Admin", + "Description": "Layout Management Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "Layouts List", + "Type": "LayoutListPlugin", + "IsDefault": true + }, + { + "Name": "Create Layout", + "Type": "LayoutCreatePlugin" + }, + { + "Name": "Update Layout", + "Type": "LayoutUpdatePlugin" + } + ] + }, + + { + "Name": "TextHTML Plugin", + "Description": "TextHTML Plugin", + "Assembly": "FluentCMS.Web.Plugins.Contents.TextHTML.dll", + "Icon": "", + "Types": [ + { + "Name": "View", + "Type": "TextHTMLViewPlugin", + "IsDefault": true + }, + { + "Name": "Edit", + "Type": "TextHTMLEditPlugin" + } + ] + }, + { + "Name": "RichText Plugin", + "Description": "RichText Plugin", + "Assembly": "FluentCMS.Web.Plugins.Contents.RichText.dll", + "Icon": "", + "Types": [ + { + "Name": "View", + "Type": "RichTextViewPlugin", + "IsDefault": true + }, + { + "Name": "Edit", + "Type": "RichTextEditPlugin" + } + ] + }, + { + "Name": "IFrame Plugin", + "Description": "IFrame Plugin", + "Assembly": "FluentCMS.Web.Plugins.Contents.IFrame.dll", + "Icon": "", + "Types": [ + { + "Name": "View", + "Type": "IFrameViewPlugin", + "IsDefault": true + }, + { + "Name": "Edit", + "Type": "IFrameEditPlugin" + } + ] + }, + { + "Name": "Block Plugin", + "Description": "Block Plugin", + "Assembly": "FluentCMS.Web.Plugins.Contents.Block.dll", + "Icon": "", + "Types": [ + { + "Name": "View", + "Type": "BlockViewPlugin", + "IsDefault": true + }, + { + "Name": "Edit", + "Type": "BlockEditPlugin" + } + ] + }, + { + "Name": "Content List", + "Description": "Content List Plugin", + "Assembly": "FluentCMS.Web.Plugins.Contents.ContentViewer.dll", + "Icon": "", + "Types": [ + { + "Name": "View", + "Type": "ContentListViewPlugin", + "IsDefault": true + }, + { + "Name": "Edit", + "Type": "ContentListEditPlugin" + } + ] + }, + { + "Name": "Content Detail", + "Description": "Content Detail Plugin", + "Assembly": "FluentCMS.Web.Plugins.Contents.ContentViewer.dll", + "Icon": "", + "Types": [ + { + "Name": "View", + "Type": "ContentDetailViewPlugin", + "IsDefault": true + }, + { + "Name": "Edit", + "Type": "ContentDetailEditPlugin" + } + ] + }, + { + "Name": "Global Settings Management", + "Category": "Admin", + "Description": "Global Settings Management Plugin", + "Assembly": "FluentCMS.Web.Plugins.Admin.dll", + "Locked": true, + "Types": [ + { + "Name": "Globals Setting", + "Type": "GlobalSettingsPlugin", + "IsDefault": true + } + ] + } + ] +} diff --git a/src/FluentCMS/Templates/Shop/site.json b/src/FluentCMS/Templates/Shop/site.json new file mode 100644 index 000000000..a9e68bbf8 --- /dev/null +++ b/src/FluentCMS/Templates/Shop/site.json @@ -0,0 +1,444 @@ +{ + "Name": "FluentCMS Administration", + "Description": "FluentCMS blank site template", + "Layout": "DefaultLayout", + "EditLayout": "EditLayout", + "DetailLayout": "SingleLayout", + "AdminRoles": [ "Administrators" ], + "ContributorRoles": [ "Contributors" ], + "Roles": [ + { + "Name": "Administrators", + "Description": "Default administrators role with full access to the site", + "Type": 1 + }, + { + "Name": "Authenticated Users", + "Description": "Default authenticated users role", + "Type": 2 + }, + { + "Name": "Guests", + "Description": "Default unauthenticated users role (not logged in users)", + "Type": 3 + }, + { + "Name": "All Users", + "Description": "Default all users (authenticated or unauthenticated users)", + "Type": 4 + }, + { + "Name": "Contributors", + "Description": "Contributor users to manage pages, plugins, etc.", + "Type": 0 + } + ], + "Layouts": [ + { + "Name": "DefaultLayout" + }, + { + "Name": "AdminLayout" + }, + { + "Name": "AuthLayout" + }, + { + "Name": "EditLayout" + }, + { + "Name": "SingleLayout" + } + ], + "Pages": [ + { + "Title": "Home", + "Path": "/", + "EditLayout": "EditLayout", + "ViewRoles": [ "All Users" ], + "Plugins": [] + }, + { + "Title": "Admin", + "Path": "/admin", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [], + "Children": [ + { + "Title": "Content Type Builder", + "Path": "/content-types", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [ + { + "Definition": "ContentType Management", + "Section": "Main", + "Locked": true + } + ] + }, + { + "Title": "Users", + "Path": "/users", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [ + { + "Definition": "User Management", + "Section": "Main", + "Locked": true + } + ] + }, + { + "Title": "File Management", + "Path": "/files", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [ + { + "Definition": "File Management", + "Section": "Main", + "Locked": true + } + ] + }, + { + "Title": "Api Tokens", + "Path": "/api-tokens", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [ + { + "Definition": "Api Token Management", + "Section": "Main", + "Locked": true + } + ] + }, + { + "Title": "Roles", + "Path": "/roles", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [ + { + "Definition": "Role Management", + "Section": "Main", + "Locked": true + } + ] + }, + { + "Title": "Sites", + "Path": "/sites", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [ + { + "Definition": "Site Management", + "Section": "Main", + "Locked": true + } + ] + }, + { + "Title": "Plugins", + "Path": "/plugins", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [ + { + "Definition": "Plugin Definition Management", + "Section": "Main", + "Locked": true + } + ] + }, + { + "Title": "Pages", + "Path": "/pages", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [ + { + "Definition": "Page Management", + "Section": "Main", + "Locked": true + } + ] + }, + { + "Title": "Blocks", + "Path": "/blocks", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [ + { + "Definition": "Block Management", + "Section": "Main", + "Locked": true + } + ] + }, + { + "Title": "Layouts", + "Path": "/layouts", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [ + { + "Definition": "Layout Management", + "Section": "Main", + "Locked": true + } + ] + }, + { + "Title": "GlobalSettings", + "Path": "/globalsettings", + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "AdminRoles": [ "Administrators" ], + "Locked": true, + "Plugins": [ + { + "Definition": "Global Settings Management", + "Section": "Main", + "Locked": true + } + ] + } + ] + }, + { + "Title": "Authentication", + "Path": "/auth", + "Children": [ + { + "Title": "Login", + "Path": "/login", + "Locked": true, + "Layout": "AuthLayout", + "ViewRoles": [ "All Users" ], + "Plugins": [ + { + "Definition": "Login", + "Section": "Main" + } + ] + }, + { + "Title": "Logout", + "Path": "/logout", + "ViewRoles": [ "All Users" ], + "Locked": true, + "Plugins": [ + { + "Definition": "Logout", + "Section": "Main" + } + ] + }, + { + "Title": "Register", + "Path": "/register", + "ViewRoles": [ "All Users" ], + "Locked": true, + "Layout": "AuthLayout", + "Plugins": [ + { + "Definition": "Register", + "Section": "Main" + } + ] + }, + { + "Title": "Reset Password", + "Path": "/reset-password", + "ViewRoles": [ "All Users" ], + "Locked": true, + "Layout": "AuthLayout", + "Plugins": [ + { + "Definition": "Reset Password", + "Section": "Main" + } + ] + }, + { + "Title": "Forgot Password", + "Path": "/forgot-password", + "ViewRoles": [ "All Users" ], + "Locked": true, + "Layout": "AuthLayout", + "Plugins": [ + { + "Definition": "Forgot Password", + "Section": "Main" + } + ] + }, + { + "Title": "Profile", + "Path": "/profile", + "ViewRoles": [ "Authenticated Users" ], + "Layout": "AdminLayout", + "EditLayout": "AdminLayout", + "Locked": true, + "Plugins": [ + { + "Definition": "Profile", + "Section": "Main" + } + ] + } + ] + } + ], + "Blocks": [ + { + "Name": "Header", + "Category": "Headers", + "Description": "Simple Header Block" + }, + { + "Name": "Default", + "Category": "Hero", + "Description": "Default Hero Block" + }, + { + "Name": "Visual Image", + "Category": "Hero", + "Description": "Visual image with heading" + }, + { + "Name": "Default", + "Description": "Default feature list", + "Category": "Feature" + }, + { + "Name": "Default", + "Description": "Default CTA Block", + "Category": "CTA" + }, + { + "Name": "With Image", + "Description": "CTA With Image", + "Category": "CTA" + }, + { + "Name": "With Heading", + "Description": "CTA With Heading", + "Category": "CTA" + }, + { + "Name": "Simple", + "Category": "Content", + "Description": "Content with Heading and description" + }, + { + "Name": "With Image", + "Category": "Content", + "Description": "Content with Image" + }, + { + "Name": "Card", + "Category": "Teams", + "Description": "Teams section with card" + }, + { + "Name": "Clean", + "Category": "Teams", + "Description": "Grid layout clean without cards" + }, + { + "Name": "Default", + "Category": "Pricing", + "Description": "Default pricing with cards" + }, + { + "Name": "Default", + "Category": "Footer", + "Description": "Default footer" + }, + { + "Name": "With Sitemap & Social", + "Category": "Footer", + "Description": "Footer with sitemap and social links" + }, + { + "Name": "Default", + "Category": "Social Proof", + "Description": "Simple statistics" + }, + { + "Name": "Card Statistics", + "Category": "Social Proof", + "Description": "Statistics using cards" + }, + { + "Name": "Icon Statistics", + "Category": "Social Proof", + "Description": "Statistics with icons" + }, + { + "Name": "With Gallery", + "Category": "Content", + "Description": "Content with gallery" + }, + { + "Name": "Mobile App", + "Category": "CTA", + "Description": "description and Download links of mobile app" + }, + { + "Name": "Default", + "Category": "FAQ", + "Description": "Default frequently asked questions block" + }, + { + "Name": "Default", + "Category": "Testimonials", + "Description": "Default Testimonials block" + }, + { + "Name": "Cards", + "Category": "Testimonials", + "Description": "Testimonials in cards" + }, + { + "Name": "Default", + "Category": "Customer Logos", + "Description": "Default customer logos section" + }, + { + "Name": "Default", + "Category": "Schedule", + "Description": "Default schedule section" + } + ] +}