Products.js
125 lines
| 1 | /** |
| 2 | * External Dependencies |
| 3 | */ |
| 4 | import { __ } from "@wordpress/i18n"; |
| 5 | |
| 6 | /** |
| 7 | * Internal Dependencies |
| 8 | */ |
| 9 | import * as Icon from "../components/Icon/Icon"; |
| 10 | import colormag from "../images/colormag.webp"; |
| 11 | import ur from "../images/UR-logo.webp"; |
| 12 | import magazineBlocks from "../images/magazine-blocks.webp"; |
| 13 | import masteriyo from "../images/masteriyo.webp"; |
| 14 | import blockart from "../images/blockart-blocks.webp"; |
| 15 | import zakra from "../images/zakra.webp"; |
| 16 | |
| 17 | export const PLUGINS = [ |
| 18 | { |
| 19 | label: "Masteriyo", |
| 20 | slug: "learning-management-system/lms.php", |
| 21 | description: __( |
| 22 | "Revolutionize e-learning effortlessly with Masteriyo, a WordPress LMS plugin. Sell courses with quizzes, assignments, etc., for a dynamic learning experience.", |
| 23 | "everest-forms" |
| 24 | ), |
| 25 | type: "plugin", |
| 26 | image: masteriyo, |
| 27 | website: "https://masteriyo.com/", |
| 28 | shortDescription: __( |
| 29 | "WordPress LMS plugin with Quiz Builder", |
| 30 | "everest-forms" |
| 31 | ), |
| 32 | logo: Icon.Masteriyo, |
| 33 | liveDemoURL: "https://masteriyo.demoswp.net/", |
| 34 | }, |
| 35 | { |
| 36 | label: "BlockArt Blocks", |
| 37 | slug: "blockart-blocks/blockart.php", |
| 38 | description: __( |
| 39 | "Fuel your digital creativity with BlockArt Blocks, a dynamic collection of custom Gutenberg blocks for designing captivating WordPress sites.", |
| 40 | "everest-forms" |
| 41 | ), |
| 42 | type: "plugin", |
| 43 | image: blockart, |
| 44 | website: "https://wpblockart.com/blockart-blocks/", |
| 45 | shortDescription: __( |
| 46 | "Custom Gutenberg Blocks Plugin", |
| 47 | "everest-forms" |
| 48 | ), |
| 49 | logo: Icon.Blockart, |
| 50 | liveDemoURL: "https://tastewp.com/template/blockartblocks", |
| 51 | }, |
| 52 | { |
| 53 | label: 'User Registration', |
| 54 | slug: 'user-registration/user-registration.php', |
| 55 | description: __( |
| 56 | 'The best Drag and drop user registration form and login form builder with a user profile page, email notification, user roles assignment, and more.', |
| 57 | 'everest-forms', |
| 58 | ), |
| 59 | type: 'plugin', |
| 60 | image: ur, |
| 61 | website: 'https://wpuserregistration.com/', |
| 62 | shortDescription: __( |
| 63 | 'User Forms, Profiles, Roles, Notifications.', |
| 64 | 'everest-forms', |
| 65 | ), |
| 66 | logo: Icon.UR, |
| 67 | liveDemoURL: "https://userregistration.demoswp.net/", |
| 68 | }, |
| 69 | { |
| 70 | label: "Magazine Blocks", |
| 71 | slug: "magazine-blocks/magazine-blocks.php", |
| 72 | description: __( |
| 73 | "Experience advanced Gutenberg blocks with Magazine Blocks, designed for crafting stunning magazine and news websites.", |
| 74 | "everest-forms" |
| 75 | ), |
| 76 | type: "plugin", |
| 77 | image: magazineBlocks, |
| 78 | website: "https://wpblockart.com/magazine-blocks/", |
| 79 | shortDescription: __( |
| 80 | "Gutenberg Blocks for Magazine-style Websites", |
| 81 | "everest-forms" |
| 82 | ), |
| 83 | logo: Icon.MagazineBlocks, |
| 84 | liveDemoURL: "https://tastewp.com/template/magazineblocks", |
| 85 | }, |
| 86 | ]; |
| 87 | |
| 88 | export const THEMES = [ |
| 89 | { |
| 90 | label: "Zakra", |
| 91 | slug: "zakra", |
| 92 | description: __( |
| 93 | "Unlock boundless website possibilities with Zakra, a versatile multipurpose theme offering over 40 free starter sites for a tailored web experience.", |
| 94 | "everest-forms" |
| 95 | ), |
| 96 | type: "theme", |
| 97 | image: zakra, |
| 98 | website: "https://zakratheme.com/", |
| 99 | liveDemoURL: "https://zakratheme.com/demos/#/", |
| 100 | }, |
| 101 | { |
| 102 | label: "ColorMag", |
| 103 | slug: "colormag", |
| 104 | description: __( |
| 105 | "Elevate your website's style with Colormag, the go-to choice for news, blogs, and magazines. Embark on a digital spectacle of website-building excellence! ", |
| 106 | "everest-forms" |
| 107 | ), |
| 108 | type: "theme", |
| 109 | image: colormag, |
| 110 | website: "https://themegrill.com/themes/colormag/", |
| 111 | liveDemoURL: "https://themegrilldemos.com/colormag-demos/#/", |
| 112 | }, |
| 113 | ]; |
| 114 | |
| 115 | export const FreeModules = [ |
| 116 | 'ai-contact-form', |
| 117 | 'everest-forms-oxygen-builder', |
| 118 | 'everest-forms-beaver-builder', |
| 119 | 'everest-forms-bricks-builder', |
| 120 | 'everest-forms-divi-builder', |
| 121 | 'everest-forms-wpbakery-builder', |
| 122 | 'everest-forms-style-customizer', |
| 123 | 'everest-forms-clean-talk', |
| 124 | ] |
| 125 |