@sociallane/elements 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierignore +5 -0
- package/.prettierrc.json +8 -0
- package/.vite-dev +0 -0
- package/README.md +47 -0
- package/admin/js/widget-browser.js +124 -0
- package/admin/views/onboarding.php +62 -0
- package/admin/views/partials/category-tabs.php +39 -0
- package/admin/views/partials/step-complete.php +48 -0
- package/admin/views/partials/step-requirements.php +52 -0
- package/admin/views/partials/step-widgets.php +63 -0
- package/admin/views/partials/widget-card.php +67 -0
- package/admin/views/partials/widget-toolbar.php +28 -0
- package/admin/views/preview-embed.php +78 -0
- package/admin/views/preview-frame.php +183 -0
- package/admin/views/preview-index.php +74 -0
- package/admin/views/settings.php +94 -0
- package/admin/views/setup-widget-catalog-frontend.php +189 -0
- package/admin/views/setup-widget-catalog.php +164 -0
- package/assets/css/lenis.css +18 -0
- package/assets/css/tailwind.css +740 -0
- package/assets/dist/.vite/manifest.json +13 -0
- package/assets/dist/animations-BySooxN8.js +37 -0
- package/assets/dist/tailwind-DzIAfumJ.css +1 -0
- package/assets/js/animations.js +113 -0
- package/assets/js/utilities/hover-reveal.js +88 -0
- package/assets/js/utilities/pin.js +31 -0
- package/assets/js/utilities/reveal.js +59 -0
- package/assets/js/utilities/split-text.js +93 -0
- package/assets/js/utilities/stagger.js +48 -0
- package/assets/previews/.gitkeep +2 -0
- package/assets/previews/README.md +65 -0
- package/assets/svgs/components/accordion.svg +9 -0
- package/assets/svgs/components/alert.svg +6 -0
- package/assets/svgs/components/avatar.svg +4 -0
- package/assets/svgs/components/badge.svg +4 -0
- package/assets/svgs/components/breadcrumbs.svg +7 -0
- package/assets/svgs/components/button.svg +4 -0
- package/assets/svgs/components/calendar.svg +10 -0
- package/assets/svgs/components/card.svg +5 -0
- package/assets/svgs/widgets/bento-grid.svg +8 -0
- package/assets/svgs/widgets/bento-portfolio.svg +8 -0
- package/assets/svgs/widgets/content-block.svg +4 -0
- package/assets/svgs/widgets/faq.svg +11 -0
- package/assets/svgs/widgets/feature-grid.svg +14 -0
- package/assets/svgs/widgets/feature-list-cta.svg +10 -0
- package/assets/svgs/widgets/footer.svg +7 -0
- package/assets/svgs/widgets/grid-posts.svg +11 -0
- package/assets/svgs/widgets/grid-team.svg +8 -0
- package/assets/svgs/widgets/hero.svg +7 -0
- package/assets/svgs/widgets/intro-text.svg +3 -0
- package/assets/svgs/widgets/logo-grid.svg +12 -0
- package/assets/svgs/widgets/navigation.svg +10 -0
- package/assets/svgs/widgets/newsletter.svg +6 -0
- package/assets/svgs/widgets/pricing-table.svg +9 -0
- package/assets/svgs/widgets/social-proof.svg +7 -0
- package/docs/cursor-global-rule.md +24 -0
- package/docs/install-new-instance.md +92 -0
- package/docs/npm-widget-cheatsheet.md +178 -0
- package/docs/package-installation.md +127 -0
- package/docs/widgets/blog-grid.md +31 -0
- package/docs/widgets/card-hover-reveal.md +27 -0
- package/docs/widgets/cta-banner.md +31 -0
- package/docs/widgets/cta-split.md +26 -0
- package/docs/widgets/faq.md +31 -0
- package/docs/widgets/feature-list.md +21 -0
- package/docs/widgets/footer-links-contact.md +24 -0
- package/elements/.gitkeep +0 -0
- package/elements/button/button.php +161 -0
- package/elements/button/templates/render.php +89 -0
- package/elements/cta-group/templates/render.php +61 -0
- package/elements/image/image.php +113 -0
- package/elements/image/templates/render.php +43 -0
- package/elements/section-header/templates/render.php +103 -0
- package/includes/button-presets.php +71 -0
- package/includes/class-admin-settings.php +134 -0
- package/includes/class-disable-reset-css.php +78 -0
- package/includes/class-gravity-forms-styles.php +78 -0
- package/includes/class-onboarding.php +214 -0
- package/includes/class-setup-widget-catalog.php +37 -0
- package/includes/class-widget-manager.php +605 -0
- package/includes/class-widget-preview.php +101 -0
- package/includes/footer-menu-columns.php +85 -0
- package/includes/widget-preview-defaults.php +660 -0
- package/package.json +38 -0
- package/packages/core/assets/css/lenis.css +18 -0
- package/packages/core/assets/css/tailwind.css +704 -0
- package/packages/core/assets/dist/.vite/manifest.json +13 -0
- package/packages/core/assets/dist/animations-BySooxN8.js +37 -0
- package/packages/core/assets/dist/tailwind-BE97TLZW.css +1 -0
- package/packages/core/assets/js/animations.js +113 -0
- package/packages/core/assets/js/utilities/hover-reveal.js +88 -0
- package/packages/core/assets/js/utilities/pin.js +31 -0
- package/packages/core/assets/js/utilities/reveal.js +56 -0
- package/packages/core/assets/js/utilities/split-text.js +74 -0
- package/packages/core/assets/js/utilities/stagger.js +46 -0
- package/packages/core/includes/class-plugin.php +75 -0
- package/packages/core/includes/class-vite-assets.php +357 -0
- package/packages/core/includes/class-widgets-loader.php +195 -0
- package/packages/core/includes/helpers.php +407 -0
- package/packages/core/includes/traits/trait-animation-controls.php +194 -0
- package/packages/core/includes/traits/trait-common-controls.php +239 -0
- package/packages/core/package.json +25 -0
- package/packages/core/vite.config.js +123 -0
- package/packages/widgets/bento-grid/bento-grid.php +761 -0
- package/packages/widgets/bento-grid/data/view.php +327 -0
- package/packages/widgets/bento-grid/package.json +12 -0
- package/packages/widgets/bento-grid/templates/partials/cell1.php +45 -0
- package/packages/widgets/bento-grid/templates/partials/cell2.php +52 -0
- package/packages/widgets/bento-grid/templates/partials/cell3.php +45 -0
- package/packages/widgets/bento-grid/templates/partials/cell4.php +44 -0
- package/packages/widgets/bento-grid/templates/partials/default-grid.php +31 -0
- package/packages/widgets/bento-grid/templates/partials/tcsr-row1-left.php +68 -0
- package/packages/widgets/bento-grid/templates/partials/tcsr-row1-right.php +65 -0
- package/packages/widgets/bento-grid/templates/partials/tcsr-row2-center.php +41 -0
- package/packages/widgets/bento-grid/templates/partials/tcsr-row2-left.php +38 -0
- package/packages/widgets/bento-grid/templates/partials/tcsr-row2-right.php +38 -0
- package/packages/widgets/bento-grid/templates/partials/two-column-second-row-grid.php +35 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-deploys.php +47 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-grid.php +34 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-integrations.php +40 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-overview.php +67 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-releases.php +29 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-security.php +44 -0
- package/packages/widgets/bento-grid/templates/wrapper.php +72 -0
- package/packages/widgets/bento-grid-4/bento-grid-4.php +524 -0
- package/packages/widgets/bento-grid-4/data/view.php +127 -0
- package/packages/widgets/bento-grid-4/package.json +12 -0
- package/packages/widgets/bento-grid-4/templates/partials/cell1.php +45 -0
- package/packages/widgets/bento-grid-4/templates/partials/cell2.php +52 -0
- package/packages/widgets/bento-grid-4/templates/partials/cell3.php +45 -0
- package/packages/widgets/bento-grid-4/templates/partials/cell4.php +44 -0
- package/packages/widgets/bento-grid-4/templates/partials/default-grid.php +31 -0
- package/packages/widgets/bento-grid-4/templates/partials/tcsr-row1-left.php +68 -0
- package/packages/widgets/bento-grid-4/templates/partials/tcsr-row1-right.php +65 -0
- package/packages/widgets/bento-grid-4/templates/partials/tcsr-row2-center.php +41 -0
- package/packages/widgets/bento-grid-4/templates/partials/tcsr-row2-left.php +38 -0
- package/packages/widgets/bento-grid-4/templates/partials/tcsr-row2-right.php +38 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-column-second-row-grid.php +35 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-deploys.php +47 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-grid.php +34 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-integrations.php +40 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-overview.php +67 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-releases.php +29 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-security.php +44 -0
- package/packages/widgets/bento-grid-4/templates/wrapper.php +65 -0
- package/packages/widgets/bento-grid-5/bento-grid-5.php +219 -0
- package/packages/widgets/bento-grid-5/data/view.php +136 -0
- package/packages/widgets/bento-grid-5/package.json +12 -0
- package/packages/widgets/bento-grid-5/templates/partials/cell1.php +45 -0
- package/packages/widgets/bento-grid-5/templates/partials/cell2.php +52 -0
- package/packages/widgets/bento-grid-5/templates/partials/cell3.php +45 -0
- package/packages/widgets/bento-grid-5/templates/partials/cell4.php +44 -0
- package/packages/widgets/bento-grid-5/templates/partials/default-grid.php +31 -0
- package/packages/widgets/bento-grid-5/templates/partials/tcsr-row1-left.php +68 -0
- package/packages/widgets/bento-grid-5/templates/partials/tcsr-row1-right.php +65 -0
- package/packages/widgets/bento-grid-5/templates/partials/tcsr-row2-center.php +41 -0
- package/packages/widgets/bento-grid-5/templates/partials/tcsr-row2-left.php +38 -0
- package/packages/widgets/bento-grid-5/templates/partials/tcsr-row2-right.php +38 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-column-second-row-grid.php +35 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-deploys.php +47 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-grid.php +34 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-integrations.php +40 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-overview.php +67 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-releases.php +29 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-security.php +44 -0
- package/packages/widgets/bento-grid-5/templates/wrapper.php +65 -0
- package/packages/widgets/bento-grid-6/bento-grid-6.php +223 -0
- package/packages/widgets/bento-grid-6/data/view.php +158 -0
- package/packages/widgets/bento-grid-6/package.json +12 -0
- package/packages/widgets/bento-grid-6/templates/partials/cell1.php +45 -0
- package/packages/widgets/bento-grid-6/templates/partials/cell2.php +52 -0
- package/packages/widgets/bento-grid-6/templates/partials/cell3.php +45 -0
- package/packages/widgets/bento-grid-6/templates/partials/cell4.php +44 -0
- package/packages/widgets/bento-grid-6/templates/partials/default-grid.php +31 -0
- package/packages/widgets/bento-grid-6/templates/partials/tcsr-row1-left.php +68 -0
- package/packages/widgets/bento-grid-6/templates/partials/tcsr-row1-right.php +65 -0
- package/packages/widgets/bento-grid-6/templates/partials/tcsr-row2-center.php +41 -0
- package/packages/widgets/bento-grid-6/templates/partials/tcsr-row2-left.php +38 -0
- package/packages/widgets/bento-grid-6/templates/partials/tcsr-row2-right.php +38 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-column-second-row-grid.php +35 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-deploys.php +47 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-grid.php +34 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-integrations.php +40 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-overview.php +67 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-releases.php +29 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-security.php +44 -0
- package/packages/widgets/bento-grid-6/templates/wrapper.php +65 -0
- package/packages/widgets/bento-portfolio/bento-portfolio.php +399 -0
- package/packages/widgets/bento-portfolio/data/view.php +102 -0
- package/packages/widgets/bento-portfolio/package.json +12 -0
- package/packages/widgets/bento-portfolio/templates/partials/portfolio-card.php +84 -0
- package/packages/widgets/bento-portfolio/templates/partials/portfolio-default-grid.php +35 -0
- package/packages/widgets/bento-portfolio/templates/partials/portfolio-two-column-second-row-grid.php +39 -0
- package/packages/widgets/bento-portfolio/templates/partials/portfolio-two-row-grid.php +35 -0
- package/packages/widgets/bento-portfolio/templates/wrapper.php +88 -0
- package/packages/widgets/bento-portfolio-4/bento-portfolio-4.php +382 -0
- package/packages/widgets/bento-portfolio-4/data/view.php +91 -0
- package/packages/widgets/bento-portfolio-4/package.json +12 -0
- package/packages/widgets/bento-portfolio-4/templates/partials/portfolio-card.php +84 -0
- package/packages/widgets/bento-portfolio-4/templates/partials/portfolio-default-grid.php +35 -0
- package/packages/widgets/bento-portfolio-4/templates/partials/portfolio-two-column-second-row-grid.php +39 -0
- package/packages/widgets/bento-portfolio-4/templates/partials/portfolio-two-row-grid.php +35 -0
- package/packages/widgets/bento-portfolio-4/templates/wrapper.php +78 -0
- package/packages/widgets/bento-portfolio-5/bento-portfolio-5.php +382 -0
- package/packages/widgets/bento-portfolio-5/data/view.php +91 -0
- package/packages/widgets/bento-portfolio-5/package.json +12 -0
- package/packages/widgets/bento-portfolio-5/templates/partials/portfolio-card.php +84 -0
- package/packages/widgets/bento-portfolio-5/templates/partials/portfolio-default-grid.php +35 -0
- package/packages/widgets/bento-portfolio-5/templates/partials/portfolio-two-column-second-row-grid.php +39 -0
- package/packages/widgets/bento-portfolio-5/templates/partials/portfolio-two-row-grid.php +35 -0
- package/packages/widgets/bento-portfolio-5/templates/wrapper.php +78 -0
- package/packages/widgets/bento-portfolio-6/bento-portfolio-6.php +382 -0
- package/packages/widgets/bento-portfolio-6/data/view.php +91 -0
- package/packages/widgets/bento-portfolio-6/package.json +12 -0
- package/packages/widgets/bento-portfolio-6/templates/partials/portfolio-card.php +84 -0
- package/packages/widgets/bento-portfolio-6/templates/partials/portfolio-default-grid.php +35 -0
- package/packages/widgets/bento-portfolio-6/templates/partials/portfolio-two-column-second-row-grid.php +39 -0
- package/packages/widgets/bento-portfolio-6/templates/partials/portfolio-two-row-grid.php +35 -0
- package/packages/widgets/bento-portfolio-6/templates/wrapper.php +78 -0
- package/packages/widgets/blog-grid/blog-grid.php +359 -0
- package/packages/widgets/blog-grid/data/view.php +192 -0
- package/packages/widgets/blog-grid/package.json +12 -0
- package/packages/widgets/blog-grid/templates/partials/card.php +73 -0
- package/packages/widgets/blog-grid/templates/wrapper.php +89 -0
- package/packages/widgets/card-hover-reveal/card-hover-reveal.php +329 -0
- package/packages/widgets/card-hover-reveal/data/view.php +108 -0
- package/packages/widgets/card-hover-reveal/package.json +12 -0
- package/packages/widgets/card-hover-reveal/templates/partials/card.php +86 -0
- package/packages/widgets/card-hover-reveal/templates/wrapper.php +80 -0
- package/packages/widgets/client-logos/client-logos.php +214 -0
- package/packages/widgets/client-logos/data/view.php +88 -0
- package/packages/widgets/client-logos/package.json +12 -0
- package/packages/widgets/client-logos/templates/partials/client-item.php +38 -0
- package/packages/widgets/client-logos/templates/wrapper.php +62 -0
- package/packages/widgets/content-block/content-block.php +280 -0
- package/packages/widgets/content-block/data/view.php +103 -0
- package/packages/widgets/content-block/package.json +12 -0
- package/packages/widgets/content-block/templates/partials/content.php +52 -0
- package/packages/widgets/content-block/templates/wrapper.php +73 -0
- package/packages/widgets/cta-banner/cta-banner.php +300 -0
- package/packages/widgets/cta-banner/data/view.php +96 -0
- package/packages/widgets/cta-banner/package.json +12 -0
- package/packages/widgets/cta-banner/templates/wrapper.php +131 -0
- package/packages/widgets/cta-notify/cta-notify.php +135 -0
- package/packages/widgets/cta-notify/data/view.php +48 -0
- package/packages/widgets/cta-notify/package.json +12 -0
- package/packages/widgets/cta-notify/templates/wrapper.php +69 -0
- package/packages/widgets/cta-split/cta-split.php +246 -0
- package/packages/widgets/cta-split/data/view.php +84 -0
- package/packages/widgets/cta-split/package.json +12 -0
- package/packages/widgets/cta-split/templates/wrapper.php +113 -0
- package/packages/widgets/faq-centered/data/view.php +87 -0
- package/packages/widgets/faq-centered/faq-centered.php +223 -0
- package/packages/widgets/faq-centered/package.json +12 -0
- package/packages/widgets/faq-centered/templates/partials/accordion.php +70 -0
- package/packages/widgets/faq-centered/templates/partials/layout-centered.php +41 -0
- package/packages/widgets/faq-centered/templates/partials/layout-split.php +47 -0
- package/packages/widgets/faq-centered/templates/partials/layout-stacked.php +57 -0
- package/packages/widgets/faq-centered/templates/wrapper.php +70 -0
- package/packages/widgets/faq-split/data/view.php +93 -0
- package/packages/widgets/faq-split/faq-split.php +236 -0
- package/packages/widgets/faq-split/package.json +12 -0
- package/packages/widgets/faq-split/templates/partials/accordion.php +70 -0
- package/packages/widgets/faq-split/templates/partials/layout-centered.php +41 -0
- package/packages/widgets/faq-split/templates/partials/layout-split.php +47 -0
- package/packages/widgets/faq-split/templates/partials/layout-stacked.php +57 -0
- package/packages/widgets/faq-split/templates/wrapper.php +70 -0
- package/packages/widgets/faq-stacked/data/view.php +92 -0
- package/packages/widgets/faq-stacked/faq-stacked.php +223 -0
- package/packages/widgets/faq-stacked/package.json +12 -0
- package/packages/widgets/faq-stacked/templates/partials/accordion.php +70 -0
- package/packages/widgets/faq-stacked/templates/partials/layout-centered.php +41 -0
- package/packages/widgets/faq-stacked/templates/partials/layout-split.php +47 -0
- package/packages/widgets/faq-stacked/templates/partials/layout-stacked.php +57 -0
- package/packages/widgets/faq-stacked/templates/wrapper.php +70 -0
- package/packages/widgets/feature-grid/data/view.php +80 -0
- package/packages/widgets/feature-grid/feature-grid.php +305 -0
- package/packages/widgets/feature-grid/package.json +12 -0
- package/packages/widgets/feature-grid/templates/partials/centered-2x2.php +69 -0
- package/packages/widgets/feature-grid/templates/partials/feature-item.php +54 -0
- package/packages/widgets/feature-grid/templates/wrapper.php +67 -0
- package/packages/widgets/feature-grid-centered/data/view.php +78 -0
- package/packages/widgets/feature-grid-centered/feature-grid-centered.php +278 -0
- package/packages/widgets/feature-grid-centered/package.json +12 -0
- package/packages/widgets/feature-grid-centered/templates/partials/centered-2x2.php +69 -0
- package/packages/widgets/feature-grid-centered/templates/partials/feature-item.php +54 -0
- package/packages/widgets/feature-grid-centered/templates/wrapper.php +35 -0
- package/packages/widgets/feature-list/data/view.php +49 -0
- package/packages/widgets/feature-list/feature-list.php +160 -0
- package/packages/widgets/feature-list/package.json +12 -0
- package/packages/widgets/feature-list/templates/wrapper.php +69 -0
- package/packages/widgets/feature-list-cta/data/view.php +62 -0
- package/packages/widgets/feature-list-cta/feature-list-cta.php +226 -0
- package/packages/widgets/feature-list-cta/package.json +12 -0
- package/packages/widgets/feature-list-cta/templates/partials/feature-item.php +49 -0
- package/packages/widgets/feature-list-cta/templates/wrapper.php +65 -0
- package/packages/widgets/footer/data/view.php +133 -0
- package/packages/widgets/footer/footer.php +389 -0
- package/packages/widgets/footer/package.json +12 -0
- package/packages/widgets/footer/templates/partials/bottom.php +77 -0
- package/packages/widgets/footer/templates/partials/cta.php +47 -0
- package/packages/widgets/footer/templates/partials/link-columns.php +52 -0
- package/packages/widgets/footer/templates/wrapper.php +53 -0
- package/packages/widgets/footer-brand/data/view.php +130 -0
- package/packages/widgets/footer-brand/footer-brand.php +278 -0
- package/packages/widgets/footer-brand/package.json +12 -0
- package/packages/widgets/footer-brand/templates/partials/brand.php +69 -0
- package/packages/widgets/footer-brand/templates/partials/link-columns.php +51 -0
- package/packages/widgets/footer-brand/templates/wrapper.php +59 -0
- package/packages/widgets/footer-links-contact/data/view.php +145 -0
- package/packages/widgets/footer-links-contact/footer-links-contact.php +361 -0
- package/packages/widgets/footer-links-contact/package.json +12 -0
- package/packages/widgets/footer-links-contact/templates/partials/bottom.php +70 -0
- package/packages/widgets/footer-links-contact/templates/partials/contact-column.php +66 -0
- package/packages/widgets/footer-links-contact/templates/partials/link-column.php +39 -0
- package/packages/widgets/footer-links-contact/templates/partials/logo-column.php +46 -0
- package/packages/widgets/footer-links-contact/templates/wrapper.php +68 -0
- package/packages/widgets/form-contact/data/view.php +96 -0
- package/packages/widgets/form-contact/form-contact.php +274 -0
- package/packages/widgets/form-contact/package.json +12 -0
- package/packages/widgets/form-contact/templates/partials/testimonial.php +83 -0
- package/packages/widgets/form-contact/templates/wrapper.php +98 -0
- package/packages/widgets/grid-case-studies/data/view.php +74 -0
- package/packages/widgets/grid-case-studies/grid-case-studies.php +262 -0
- package/packages/widgets/grid-case-studies/package.json +12 -0
- package/packages/widgets/grid-case-studies/templates/partials/card.php +66 -0
- package/packages/widgets/grid-case-studies/templates/wrapper.php +69 -0
- package/packages/widgets/grid-components/data/view.php +107 -0
- package/packages/widgets/grid-components/grid-components.php +323 -0
- package/packages/widgets/grid-components/package.json +12 -0
- package/packages/widgets/grid-components/templates/partials/component-card.php +81 -0
- package/packages/widgets/grid-components/templates/wrapper.php +55 -0
- package/packages/widgets/grid-team/data/view.php +67 -0
- package/packages/widgets/grid-team/grid-team.php +201 -0
- package/packages/widgets/grid-team/package.json +12 -0
- package/packages/widgets/grid-team/templates/partials/team-card.php +52 -0
- package/packages/widgets/grid-team/templates/wrapper.php +67 -0
- package/packages/widgets/hero-announcement/data/view.php +96 -0
- package/packages/widgets/hero-announcement/hero-announcement.php +270 -0
- package/packages/widgets/hero-announcement/package.json +12 -0
- package/packages/widgets/hero-announcement/templates/wrapper.php +111 -0
- package/packages/widgets/hero-centered-image/data/view.php +119 -0
- package/packages/widgets/hero-centered-image/hero-centered-image.php +297 -0
- package/packages/widgets/hero-centered-image/package.json +12 -0
- package/packages/widgets/hero-centered-image/templates/wrapper.php +123 -0
- package/packages/widgets/hero-collage/data/view.php +108 -0
- package/packages/widgets/hero-collage/hero-collage.php +151 -0
- package/packages/widgets/hero-collage/package.json +12 -0
- package/packages/widgets/hero-collage/templates/wrapper.php +102 -0
- package/packages/widgets/hero-overlay/data/view.php +117 -0
- package/packages/widgets/hero-overlay/hero-overlay.php +277 -0
- package/packages/widgets/hero-overlay/package.json +12 -0
- package/packages/widgets/hero-overlay/templates/wrapper.php +225 -0
- package/packages/widgets/hero-overlay-single/data/view.php +118 -0
- package/packages/widgets/hero-overlay-single/hero-overlay-single.php +221 -0
- package/packages/widgets/hero-overlay-single/package.json +12 -0
- package/packages/widgets/hero-overlay-single/templates/wrapper.php +225 -0
- package/packages/widgets/hero-overlay-slider/data/view.php +118 -0
- package/packages/widgets/hero-overlay-slider/hero-overlay-slider.php +262 -0
- package/packages/widgets/hero-overlay-slider/package.json +12 -0
- package/packages/widgets/hero-overlay-slider/templates/wrapper.php +225 -0
- package/packages/widgets/hero-saas-centered/data/view.php +79 -0
- package/packages/widgets/hero-saas-centered/hero-saas-centered.php +145 -0
- package/packages/widgets/hero-saas-centered/package.json +12 -0
- package/packages/widgets/hero-saas-centered/templates/partials/layout-centered.php +70 -0
- package/packages/widgets/hero-saas-centered/templates/partials/layout-split.php +76 -0
- package/packages/widgets/hero-saas-centered/templates/partials/layout-stacked.php +70 -0
- package/packages/widgets/hero-saas-centered/templates/wrapper.php +46 -0
- package/packages/widgets/hero-saas-split/data/view.php +83 -0
- package/packages/widgets/hero-saas-split/hero-saas-split.php +158 -0
- package/packages/widgets/hero-saas-split/package.json +12 -0
- package/packages/widgets/hero-saas-split/templates/partials/layout-centered.php +70 -0
- package/packages/widgets/hero-saas-split/templates/partials/layout-split.php +76 -0
- package/packages/widgets/hero-saas-split/templates/partials/layout-stacked.php +70 -0
- package/packages/widgets/hero-saas-split/templates/wrapper.php +46 -0
- package/packages/widgets/hero-saas-stacked/data/view.php +79 -0
- package/packages/widgets/hero-saas-stacked/hero-saas-stacked.php +145 -0
- package/packages/widgets/hero-saas-stacked/package.json +12 -0
- package/packages/widgets/hero-saas-stacked/templates/partials/layout-centered.php +70 -0
- package/packages/widgets/hero-saas-stacked/templates/partials/layout-split.php +76 -0
- package/packages/widgets/hero-saas-stacked/templates/partials/layout-stacked.php +70 -0
- package/packages/widgets/hero-saas-stacked/templates/wrapper.php +46 -0
- package/packages/widgets/hero-split/data/view.php +84 -0
- package/packages/widgets/hero-split/hero-split.php +127 -0
- package/packages/widgets/hero-split/package.json +12 -0
- package/packages/widgets/hero-split/templates/wrapper.php +86 -0
- package/packages/widgets/hero-stacked-image/data/view.php +137 -0
- package/packages/widgets/hero-stacked-image/hero-stacked-image.php +248 -0
- package/packages/widgets/hero-stacked-image/package.json +12 -0
- package/packages/widgets/hero-stacked-image/templates/wrapper.php +176 -0
- package/packages/widgets/intro-pattern/data/view.php +64 -0
- package/packages/widgets/intro-pattern/intro-pattern.php +161 -0
- package/packages/widgets/intro-pattern/package.json +12 -0
- package/packages/widgets/intro-pattern/templates/wrapper.php +61 -0
- package/packages/widgets/intro-text/data/view.php +79 -0
- package/packages/widgets/intro-text/intro-text.php +252 -0
- package/packages/widgets/intro-text/package.json +12 -0
- package/packages/widgets/intro-text/templates/wrapper.php +75 -0
- package/packages/widgets/logo-grid-centered/data/view.php +79 -0
- package/packages/widgets/logo-grid-centered/logo-grid-centered.php +254 -0
- package/packages/widgets/logo-grid-centered/package.json +12 -0
- package/packages/widgets/logo-grid-centered/templates/wrapper.php +95 -0
- package/packages/widgets/logo-grid-row/data/view.php +79 -0
- package/packages/widgets/logo-grid-row/logo-grid-row.php +254 -0
- package/packages/widgets/logo-grid-row/package.json +12 -0
- package/packages/widgets/logo-grid-row/templates/wrapper.php +108 -0
- package/packages/widgets/logo-grid-split/data/view.php +79 -0
- package/packages/widgets/logo-grid-split/logo-grid-split.php +254 -0
- package/packages/widgets/logo-grid-split/package.json +12 -0
- package/packages/widgets/logo-grid-split/templates/wrapper.php +97 -0
- package/packages/widgets/nav-centered/data/view.php +253 -0
- package/packages/widgets/nav-centered/nav-centered.php +350 -0
- package/packages/widgets/nav-centered/package.json +12 -0
- package/packages/widgets/nav-centered/templates/partials/desktop-mega-panel.php +109 -0
- package/packages/widgets/nav-centered/templates/partials/desktop-menu.php +102 -0
- package/packages/widgets/nav-centered/templates/partials/mobile-menu.php +104 -0
- package/packages/widgets/nav-centered/templates/wrapper.php +401 -0
- package/packages/widgets/nav-compact/data/view.php +253 -0
- package/packages/widgets/nav-compact/nav-compact.php +350 -0
- package/packages/widgets/nav-compact/package.json +12 -0
- package/packages/widgets/nav-compact/templates/partials/desktop-mega-panel.php +109 -0
- package/packages/widgets/nav-compact/templates/partials/desktop-menu.php +102 -0
- package/packages/widgets/nav-compact/templates/partials/mobile-menu.php +104 -0
- package/packages/widgets/nav-compact/templates/wrapper.php +401 -0
- package/packages/widgets/nav-default/data/view.php +254 -0
- package/packages/widgets/nav-default/nav-default.php +350 -0
- package/packages/widgets/nav-default/package.json +12 -0
- package/packages/widgets/nav-default/templates/partials/desktop-mega-panel.php +109 -0
- package/packages/widgets/nav-default/templates/partials/desktop-menu.php +102 -0
- package/packages/widgets/nav-default/templates/partials/mobile-menu.php +104 -0
- package/packages/widgets/nav-default/templates/wrapper.php +401 -0
- package/packages/widgets/nav-floating/data/view.php +253 -0
- package/packages/widgets/nav-floating/nav-floating.php +350 -0
- package/packages/widgets/nav-floating/package.json +12 -0
- package/packages/widgets/nav-floating/templates/partials/desktop-mega-panel.php +109 -0
- package/packages/widgets/nav-floating/templates/partials/desktop-menu.php +102 -0
- package/packages/widgets/nav-floating/templates/partials/mobile-menu.php +104 -0
- package/packages/widgets/nav-floating/templates/wrapper.php +401 -0
- package/packages/widgets/nav-minimal/data/view.php +253 -0
- package/packages/widgets/nav-minimal/nav-minimal.php +350 -0
- package/packages/widgets/nav-minimal/package.json +12 -0
- package/packages/widgets/nav-minimal/templates/partials/desktop-mega-panel.php +109 -0
- package/packages/widgets/nav-minimal/templates/partials/desktop-menu.php +102 -0
- package/packages/widgets/nav-minimal/templates/partials/mobile-menu.php +104 -0
- package/packages/widgets/nav-minimal/templates/wrapper.php +401 -0
- package/packages/widgets/newsletter/data/view.php +56 -0
- package/packages/widgets/newsletter/newsletter.php +210 -0
- package/packages/widgets/newsletter/package.json +12 -0
- package/packages/widgets/newsletter/templates/wrapper.php +137 -0
- package/packages/widgets/newsletter-card/data/view.php +55 -0
- package/packages/widgets/newsletter-card/newsletter-card.php +184 -0
- package/packages/widgets/newsletter-card/package.json +12 -0
- package/packages/widgets/newsletter-card/templates/wrapper.php +90 -0
- package/packages/widgets/newsletter-section/data/view.php +55 -0
- package/packages/widgets/newsletter-section/newsletter-section.php +184 -0
- package/packages/widgets/newsletter-section/package.json +12 -0
- package/packages/widgets/newsletter-section/templates/wrapper.php +87 -0
- package/packages/widgets/outreach-dashboard/data/view.php +176 -0
- package/packages/widgets/outreach-dashboard/outreach-dashboard.php +504 -0
- package/packages/widgets/outreach-dashboard/package.json +12 -0
- package/packages/widgets/outreach-dashboard/templates/partials/card-chat.php +69 -0
- package/packages/widgets/outreach-dashboard/templates/partials/card-engagement.php +60 -0
- package/packages/widgets/outreach-dashboard/templates/partials/card-integrations.php +39 -0
- package/packages/widgets/outreach-dashboard/templates/partials/card-meetings.php +43 -0
- package/packages/widgets/outreach-dashboard/templates/partials/card-networking.php +28 -0
- package/packages/widgets/outreach-dashboard/templates/wrapper.php +76 -0
- package/packages/widgets/page-hero-center/data/view.php +43 -0
- package/packages/widgets/page-hero-center/package.json +12 -0
- package/packages/widgets/page-hero-center/page-hero-center.php +120 -0
- package/packages/widgets/page-hero-center/templates/wrapper.php +54 -0
- package/packages/widgets/page-hero-left/data/view.php +43 -0
- package/packages/widgets/page-hero-left/package.json +12 -0
- package/packages/widgets/page-hero-left/page-hero-left.php +120 -0
- package/packages/widgets/page-hero-left/templates/wrapper.php +54 -0
- package/packages/widgets/pipeline-dashboard/data/view.php +131 -0
- package/packages/widgets/pipeline-dashboard/package.json +12 -0
- package/packages/widgets/pipeline-dashboard/pipeline-dashboard.php +407 -0
- package/packages/widgets/pipeline-dashboard/templates/partials/app-bar.php +31 -0
- package/packages/widgets/pipeline-dashboard/templates/partials/kanban.php +56 -0
- package/packages/widgets/pipeline-dashboard/templates/partials/pipeline-header.php +66 -0
- package/packages/widgets/pipeline-dashboard/templates/wrapper.php +64 -0
- package/packages/widgets/posts-grid/data/view.php +144 -0
- package/packages/widgets/posts-grid/package.json +12 -0
- package/packages/widgets/posts-grid/posts-grid.php +282 -0
- package/packages/widgets/posts-grid/templates/partials/card-overlay.php +58 -0
- package/packages/widgets/posts-grid/templates/partials/card.php +49 -0
- package/packages/widgets/posts-grid/templates/wrapper.php +55 -0
- package/packages/widgets/posts-grid-overlay/data/view.php +144 -0
- package/packages/widgets/posts-grid-overlay/package.json +12 -0
- package/packages/widgets/posts-grid-overlay/posts-grid-overlay.php +282 -0
- package/packages/widgets/posts-grid-overlay/templates/partials/card-overlay.php +58 -0
- package/packages/widgets/posts-grid-overlay/templates/partials/card.php +49 -0
- package/packages/widgets/posts-grid-overlay/templates/wrapper.php +55 -0
- package/packages/widgets/pricing-table/data/view.php +96 -0
- package/packages/widgets/pricing-table/package.json +12 -0
- package/packages/widgets/pricing-table/pricing-table.php +376 -0
- package/packages/widgets/pricing-table/templates/partials/pricing-card.php +125 -0
- package/packages/widgets/pricing-table/templates/wrapper.php +164 -0
- package/packages/widgets/sales-dashboard/data/view.php +158 -0
- package/packages/widgets/sales-dashboard/package.json +12 -0
- package/packages/widgets/sales-dashboard/sales-dashboard.php +434 -0
- package/packages/widgets/sales-dashboard/templates/partials/card-competitors.php +78 -0
- package/packages/widgets/sales-dashboard/templates/partials/card-feature.php +58 -0
- package/packages/widgets/sales-dashboard/templates/partials/card-profile.php +76 -0
- package/packages/widgets/sales-dashboard/templates/wrapper.php +74 -0
- package/packages/widgets/section-stats/data/view.php +90 -0
- package/packages/widgets/section-stats/package.json +12 -0
- package/packages/widgets/section-stats/section-stats.php +232 -0
- package/packages/widgets/section-stats/templates/partials/stat-card.php +44 -0
- package/packages/widgets/section-stats/templates/wrapper.php +87 -0
- package/packages/widgets/services/data/view.php +79 -0
- package/packages/widgets/services/package.json +12 -0
- package/packages/widgets/services/services.php +198 -0
- package/packages/widgets/services/templates/partials/service-item.php +35 -0
- package/packages/widgets/services/templates/wrapper.php +92 -0
- package/packages/widgets/simple-page-hero/data/view.php +43 -0
- package/packages/widgets/simple-page-hero/package.json +12 -0
- package/packages/widgets/simple-page-hero/simple-page-hero.php +147 -0
- package/packages/widgets/simple-page-hero/templates/wrapper.php +54 -0
- package/packages/widgets/social-proof/data/view.php +62 -0
- package/packages/widgets/social-proof/package.json +12 -0
- package/packages/widgets/social-proof/social-proof.php +271 -0
- package/packages/widgets/social-proof/templates/partials/layout-trust.php +73 -0
- package/packages/widgets/social-proof/templates/partials/stat-card.php +32 -0
- package/packages/widgets/social-proof/templates/partials/stat-item.php +35 -0
- package/packages/widgets/social-proof/templates/wrapper.php +87 -0
- package/packages/widgets/social-proof-trust/data/view.php +105 -0
- package/packages/widgets/social-proof-trust/package.json +12 -0
- package/packages/widgets/social-proof-trust/social-proof-trust.php +367 -0
- package/packages/widgets/social-proof-trust/templates/partials/layout-trust.php +73 -0
- package/packages/widgets/social-proof-trust/templates/partials/stat-card.php +32 -0
- package/packages/widgets/social-proof-trust/templates/partials/stat-item.php +35 -0
- package/packages/widgets/social-proof-trust/templates/wrapper.php +48 -0
- package/packages/widgets/testimonial-quote/data/view.php +57 -0
- package/packages/widgets/testimonial-quote/package.json +12 -0
- package/packages/widgets/testimonial-quote/templates/wrapper.php +66 -0
- package/packages/widgets/testimonial-quote/testimonial-quote.php +157 -0
- package/packages/widgets/testimonials-bento/data/view.php +110 -0
- package/packages/widgets/testimonials-bento/package.json +12 -0
- package/packages/widgets/testimonials-bento/templates/partials/layout-bento.php +36 -0
- package/packages/widgets/testimonials-bento/templates/partials/layout-masonry.php +74 -0
- package/packages/widgets/testimonials-bento/templates/partials/testimonial-card.php +85 -0
- package/packages/widgets/testimonials-bento/templates/wrapper.php +63 -0
- package/packages/widgets/testimonials-bento/testimonials-bento.php +322 -0
- package/packages/widgets/testimonials-grid/data/view.php +108 -0
- package/packages/widgets/testimonials-grid/package.json +12 -0
- package/packages/widgets/testimonials-grid/templates/partials/layout-bento.php +36 -0
- package/packages/widgets/testimonials-grid/templates/partials/layout-masonry.php +74 -0
- package/packages/widgets/testimonials-grid/templates/partials/testimonial-card.php +85 -0
- package/packages/widgets/testimonials-grid/templates/wrapper.php +74 -0
- package/packages/widgets/testimonials-grid/testimonials-grid.php +336 -0
- package/packages/widgets/testimonials-masonry/data/view.php +108 -0
- package/packages/widgets/testimonials-masonry/package.json +12 -0
- package/packages/widgets/testimonials-masonry/templates/partials/layout-bento.php +36 -0
- package/packages/widgets/testimonials-masonry/templates/partials/layout-masonry.php +74 -0
- package/packages/widgets/testimonials-masonry/templates/partials/testimonial-card.php +85 -0
- package/packages/widgets/testimonials-masonry/templates/wrapper.php +63 -0
- package/packages/widgets/testimonials-masonry/testimonials-masonry.php +336 -0
- package/packages/widgets/widget-filter/data/view.php +527 -0
- package/packages/widgets/widget-filter/package.json +12 -0
- package/packages/widgets/widget-filter/templates/wrapper.php +630 -0
- package/packages/widgets/widget-filter/widget-filter.php +123 -0
- package/scripts/scaffold-widget-packages.js +109 -0
- package/scripts/setup.sh +56 -0
- package/scripts/split-widget.js +176 -0
- package/scripts/sync-widgets.js +69 -0
- package/sociallane-elements.php +104 -0
- package/vite.config.js +129 -0
- package/widgets/.gitkeep +0 -0
- package/widgets/bento-grid/bento-grid.php +761 -0
- package/widgets/bento-grid/data/view.php +334 -0
- package/widgets/bento-grid/templates/partials/cell1.php +45 -0
- package/widgets/bento-grid/templates/partials/cell2.php +52 -0
- package/widgets/bento-grid/templates/partials/cell3.php +45 -0
- package/widgets/bento-grid/templates/partials/cell4.php +44 -0
- package/widgets/bento-grid/templates/partials/default-grid.php +31 -0
- package/widgets/bento-grid/templates/partials/tcsr-row1-left.php +68 -0
- package/widgets/bento-grid/templates/partials/tcsr-row1-right.php +65 -0
- package/widgets/bento-grid/templates/partials/tcsr-row2-center.php +41 -0
- package/widgets/bento-grid/templates/partials/tcsr-row2-left.php +38 -0
- package/widgets/bento-grid/templates/partials/tcsr-row2-right.php +38 -0
- package/widgets/bento-grid/templates/partials/two-column-second-row-grid.php +35 -0
- package/widgets/bento-grid/templates/partials/two-row-deploys.php +47 -0
- package/widgets/bento-grid/templates/partials/two-row-grid.php +34 -0
- package/widgets/bento-grid/templates/partials/two-row-integrations.php +40 -0
- package/widgets/bento-grid/templates/partials/two-row-overview.php +67 -0
- package/widgets/bento-grid/templates/partials/two-row-releases.php +29 -0
- package/widgets/bento-grid/templates/partials/two-row-security.php +44 -0
- package/widgets/bento-grid/templates/wrapper.php +72 -0
- package/widgets/bento-portfolio/bento-portfolio.php +399 -0
- package/widgets/bento-portfolio/data/view.php +124 -0
- package/widgets/bento-portfolio/templates/partials/portfolio-card.php +84 -0
- package/widgets/bento-portfolio/templates/partials/portfolio-default-grid.php +35 -0
- package/widgets/bento-portfolio/templates/partials/portfolio-two-column-second-row-grid.php +39 -0
- package/widgets/bento-portfolio/templates/partials/portfolio-two-row-grid.php +35 -0
- package/widgets/bento-portfolio/templates/wrapper.php +88 -0
- package/widgets/blog-grid/blog-grid.php +359 -0
- package/widgets/blog-grid/data/view.php +209 -0
- package/widgets/blog-grid/templates/partials/card.php +73 -0
- package/widgets/blog-grid/templates/wrapper.php +89 -0
- package/widgets/card-hover-reveal/card-hover-reveal.php +329 -0
- package/widgets/card-hover-reveal/data/view.php +141 -0
- package/widgets/card-hover-reveal/templates/partials/card.php +119 -0
- package/widgets/card-hover-reveal/templates/wrapper.php +80 -0
- package/widgets/client-logos/client-logos.php +214 -0
- package/widgets/client-logos/data/view.php +105 -0
- package/widgets/client-logos/templates/partials/client-item.php +38 -0
- package/widgets/client-logos/templates/wrapper.php +62 -0
- package/widgets/content-block/content-block.php +280 -0
- package/widgets/content-block/data/view.php +120 -0
- package/widgets/content-block/templates/partials/content.php +52 -0
- package/widgets/content-block/templates/wrapper.php +73 -0
- package/widgets/cta-banner/cta-banner.php +300 -0
- package/widgets/cta-banner/data/view.php +101 -0
- package/widgets/cta-banner/templates/wrapper.php +131 -0
- package/widgets/cta-notify/cta-notify.php +135 -0
- package/widgets/cta-notify/data/view.php +55 -0
- package/widgets/cta-notify/templates/wrapper.php +69 -0
- package/widgets/cta-split/cta-split.php +246 -0
- package/widgets/cta-split/data/view.php +86 -0
- package/widgets/cta-split/templates/wrapper.php +113 -0
- package/widgets/faq/data/view.php +105 -0
- package/widgets/faq/faq.php +253 -0
- package/widgets/faq/templates/partials/accordion.php +74 -0
- package/widgets/faq/templates/partials/layout-centered.php +41 -0
- package/widgets/faq/templates/partials/layout-split.php +47 -0
- package/widgets/faq/templates/partials/layout-stacked.php +57 -0
- package/widgets/faq/templates/wrapper.php +76 -0
- package/widgets/feature-grid/data/view.php +121 -0
- package/widgets/feature-grid/feature-grid.php +321 -0
- package/widgets/feature-grid/templates/partials/centered-2x2.php +69 -0
- package/widgets/feature-grid/templates/partials/feature-item.php +54 -0
- package/widgets/feature-grid/templates/wrapper.php +71 -0
- package/widgets/feature-list/data/view.php +56 -0
- package/widgets/feature-list/feature-list.php +160 -0
- package/widgets/feature-list/templates/wrapper.php +69 -0
- package/widgets/feature-list-cta/data/view.php +85 -0
- package/widgets/feature-list-cta/feature-list-cta.php +226 -0
- package/widgets/feature-list-cta/templates/partials/feature-item.php +49 -0
- package/widgets/feature-list-cta/templates/wrapper.php +65 -0
- package/widgets/footer/data/view.php +139 -0
- package/widgets/footer/footer.php +389 -0
- package/widgets/footer/templates/partials/bottom.php +77 -0
- package/widgets/footer/templates/partials/cta.php +47 -0
- package/widgets/footer/templates/partials/link-columns.php +52 -0
- package/widgets/footer/templates/wrapper.php +53 -0
- package/widgets/footer-brand/data/view.php +135 -0
- package/widgets/footer-brand/footer-brand.php +278 -0
- package/widgets/footer-brand/templates/partials/brand.php +69 -0
- package/widgets/footer-brand/templates/partials/link-columns.php +51 -0
- package/widgets/footer-brand/templates/wrapper.php +59 -0
- package/widgets/footer-links-contact/data/view.php +165 -0
- package/widgets/footer-links-contact/footer-links-contact.php +361 -0
- package/widgets/footer-links-contact/templates/partials/bottom.php +70 -0
- package/widgets/footer-links-contact/templates/partials/contact-column.php +66 -0
- package/widgets/footer-links-contact/templates/partials/link-column.php +39 -0
- package/widgets/footer-links-contact/templates/partials/logo-column.php +46 -0
- package/widgets/footer-links-contact/templates/wrapper.php +68 -0
- package/widgets/form-contact/data/view.php +133 -0
- package/widgets/form-contact/form-contact.php +274 -0
- package/widgets/form-contact/templates/partials/testimonial.php +83 -0
- package/widgets/form-contact/templates/wrapper.php +98 -0
- package/widgets/grid-case-studies/data/view.php +88 -0
- package/widgets/grid-case-studies/grid-case-studies.php +262 -0
- package/widgets/grid-case-studies/templates/partials/card.php +66 -0
- package/widgets/grid-case-studies/templates/wrapper.php +69 -0
- package/widgets/grid-components/data/view.php +131 -0
- package/widgets/grid-components/grid-components.php +316 -0
- package/widgets/grid-components/templates/partials/component-card.php +81 -0
- package/widgets/grid-components/templates/wrapper.php +55 -0
- package/widgets/grid-posts/data/view.php +159 -0
- package/widgets/grid-posts/grid-posts.php +295 -0
- package/widgets/grid-posts/templates/partials/card-overlay.php +58 -0
- package/widgets/grid-posts/templates/partials/card.php +49 -0
- package/widgets/grid-posts/templates/wrapper.php +59 -0
- package/widgets/grid-team/data/view.php +80 -0
- package/widgets/grid-team/grid-team.php +201 -0
- package/widgets/grid-team/templates/partials/team-card.php +52 -0
- package/widgets/grid-team/templates/wrapper.php +67 -0
- package/widgets/grid-testimonials/data/view.php +179 -0
- package/widgets/grid-testimonials/grid-testimonials.php +370 -0
- package/widgets/grid-testimonials/templates/partials/layout-bento.php +36 -0
- package/widgets/grid-testimonials/templates/partials/layout-masonry.php +74 -0
- package/widgets/grid-testimonials/templates/partials/testimonial-card.php +85 -0
- package/widgets/grid-testimonials/templates/wrapper.php +84 -0
- package/widgets/hero-announcement/data/view.php +98 -0
- package/widgets/hero-announcement/hero-announcement.php +270 -0
- package/widgets/hero-announcement/templates/wrapper.php +111 -0
- package/widgets/hero-centered-image/data/view.php +128 -0
- package/widgets/hero-centered-image/hero-centered-image.php +297 -0
- package/widgets/hero-centered-image/templates/wrapper.php +123 -0
- package/widgets/hero-collage/data/view.php +113 -0
- package/widgets/hero-collage/hero-collage.php +151 -0
- package/widgets/hero-collage/templates/wrapper.php +102 -0
- package/widgets/hero-overlay/data/view.php +121 -0
- package/widgets/hero-overlay/hero-overlay.php +277 -0
- package/widgets/hero-overlay/templates/wrapper.php +225 -0
- package/widgets/hero-saas/data/view.php +106 -0
- package/widgets/hero-saas/hero-saas.php +175 -0
- package/widgets/hero-saas/templates/partials/layout-centered.php +70 -0
- package/widgets/hero-saas/templates/partials/layout-split.php +76 -0
- package/widgets/hero-saas/templates/partials/layout-stacked.php +70 -0
- package/widgets/hero-saas/templates/wrapper.php +54 -0
- package/widgets/hero-split/data/view.php +92 -0
- package/widgets/hero-split/hero-split.php +127 -0
- package/widgets/hero-split/templates/wrapper.php +86 -0
- package/widgets/hero-stacked-image/data/view.php +142 -0
- package/widgets/hero-stacked-image/hero-stacked-image.php +248 -0
- package/widgets/hero-stacked-image/templates/wrapper.php +176 -0
- package/widgets/intro-pattern/data/view.php +73 -0
- package/widgets/intro-pattern/intro-pattern.php +161 -0
- package/widgets/intro-pattern/templates/wrapper.php +61 -0
- package/widgets/intro-text/data/view.php +97 -0
- package/widgets/intro-text/intro-text.php +252 -0
- package/widgets/intro-text/templates/wrapper.php +75 -0
- package/widgets/logo-grid/data/view.php +113 -0
- package/widgets/logo-grid/logo-grid.php +281 -0
- package/widgets/logo-grid/templates/wrapper.php +213 -0
- package/widgets/newsletter/data/view.php +75 -0
- package/widgets/newsletter/newsletter.php +210 -0
- package/widgets/newsletter/templates/wrapper.php +137 -0
- package/widgets/outreach-dashboard/data/view.php +176 -0
- package/widgets/outreach-dashboard/outreach-dashboard.php +504 -0
- package/widgets/outreach-dashboard/templates/partials/card-chat.php +69 -0
- package/widgets/outreach-dashboard/templates/partials/card-engagement.php +60 -0
- package/widgets/outreach-dashboard/templates/partials/card-integrations.php +39 -0
- package/widgets/outreach-dashboard/templates/partials/card-meetings.php +43 -0
- package/widgets/outreach-dashboard/templates/partials/card-networking.php +28 -0
- package/widgets/outreach-dashboard/templates/wrapper.php +76 -0
- package/widgets/pipeline-dashboard/data/view.php +131 -0
- package/widgets/pipeline-dashboard/pipeline-dashboard.php +407 -0
- package/widgets/pipeline-dashboard/templates/partials/app-bar.php +31 -0
- package/widgets/pipeline-dashboard/templates/partials/kanban.php +56 -0
- package/widgets/pipeline-dashboard/templates/partials/pipeline-header.php +66 -0
- package/widgets/pipeline-dashboard/templates/wrapper.php +64 -0
- package/widgets/pricing-table/data/view.php +133 -0
- package/widgets/pricing-table/pricing-table.php +376 -0
- package/widgets/pricing-table/templates/partials/pricing-card.php +125 -0
- package/widgets/pricing-table/templates/wrapper.php +164 -0
- package/widgets/sales-dashboard/data/view.php +158 -0
- package/widgets/sales-dashboard/sales-dashboard.php +434 -0
- package/widgets/sales-dashboard/templates/partials/card-competitors.php +78 -0
- package/widgets/sales-dashboard/templates/partials/card-feature.php +58 -0
- package/widgets/sales-dashboard/templates/partials/card-profile.php +76 -0
- package/widgets/sales-dashboard/templates/wrapper.php +74 -0
- package/widgets/section-stats/data/view.php +105 -0
- package/widgets/section-stats/section-stats.php +232 -0
- package/widgets/section-stats/templates/partials/stat-card.php +44 -0
- package/widgets/section-stats/templates/wrapper.php +87 -0
- package/widgets/services/data/view.php +91 -0
- package/widgets/services/services.php +198 -0
- package/widgets/services/templates/partials/service-item.php +35 -0
- package/widgets/services/templates/wrapper.php +92 -0
- package/widgets/simple-page-hero/data/view.php +52 -0
- package/widgets/simple-page-hero/simple-page-hero.php +147 -0
- package/widgets/simple-page-hero/templates/wrapper.php +54 -0
- package/widgets/social-proof/data/view.php +143 -0
- package/widgets/social-proof/social-proof.php +389 -0
- package/widgets/social-proof/templates/partials/layout-trust.php +73 -0
- package/widgets/social-proof/templates/partials/stat-card.php +32 -0
- package/widgets/social-proof/templates/partials/stat-item.php +35 -0
- package/widgets/social-proof/templates/wrapper.php +93 -0
- package/widgets/testimonial-quote/data/view.php +62 -0
- package/widgets/testimonial-quote/templates/wrapper.php +66 -0
- package/widgets/testimonial-quote/testimonial-quote.php +157 -0
- package/widgets.json +75 -0
- package/widgets.json.minimal +17 -0
|
@@ -0,0 +1,660 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
/**
|
|
3
|
+
* Default settings for widget preview (embed) so placeholders render.
|
|
4
|
+
* Merges common trait-based defaults with optional slug-specific overrides.
|
|
5
|
+
*
|
|
6
|
+
* @package SocialLane\Elements
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
if ( ! defined( 'ABSPATH' ) ) {
|
|
10
|
+
exit;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Get placeholder image URL (Elementor or fallback).
|
|
15
|
+
*
|
|
16
|
+
* @return string
|
|
17
|
+
*/
|
|
18
|
+
function sociallane_preview_placeholder_image_url(): string {
|
|
19
|
+
if ( class_exists( '\Elementor\Utils' ) && method_exists( '\Elementor\Utils', 'get_placeholder_image_src' ) ) {
|
|
20
|
+
$url = \Elementor\Utils::get_placeholder_image_src();
|
|
21
|
+
if ( is_string( $url ) && $url !== '' ) {
|
|
22
|
+
return $url;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
return 'https://placehold.co/800x600/f5f5f5/737373?text=Preview';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Get default settings for widget preview by slug.
|
|
30
|
+
*
|
|
31
|
+
* @param string $slug Widget slug (e.g. hero-split).
|
|
32
|
+
* @return array Settings array for prepare_*_view().
|
|
33
|
+
*/
|
|
34
|
+
function sociallane_get_preview_defaults( string $slug ): array {
|
|
35
|
+
$placeholder_url = sociallane_preview_placeholder_image_url();
|
|
36
|
+
|
|
37
|
+
$common = [
|
|
38
|
+
'show_eyebrow' => 'yes',
|
|
39
|
+
'eyebrow' => __( 'Preview', 'sociallane-elements' ),
|
|
40
|
+
'show_headline' => 'yes',
|
|
41
|
+
'headline' => __( 'Preview headline', 'sociallane-elements' ),
|
|
42
|
+
'headline_tag' => 'h2',
|
|
43
|
+
'show_description' => 'yes',
|
|
44
|
+
'description' => __( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 'sociallane-elements' ),
|
|
45
|
+
'show_image' => 'yes',
|
|
46
|
+
'image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
47
|
+
'image_alt' => '',
|
|
48
|
+
'show_cta_primary' => 'yes',
|
|
49
|
+
'cta_primary_text' => __( 'Learn more', 'sociallane-elements' ),
|
|
50
|
+
'cta_primary_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
51
|
+
'cta_primary_style' => 'primary',
|
|
52
|
+
'show_cta_secondary' => 'yes',
|
|
53
|
+
'cta_secondary_text' => __( 'Secondary', 'sociallane-elements' ),
|
|
54
|
+
'cta_secondary_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
55
|
+
'cta_secondary_style'=> 'outline',
|
|
56
|
+
'content_position' => 'left',
|
|
57
|
+
];
|
|
58
|
+
|
|
59
|
+
$by_slug = [
|
|
60
|
+
'widget-filter' => [
|
|
61
|
+
'headline' => __( 'Widget Catalog', 'sociallane-elements' ),
|
|
62
|
+
'show_search' => 'yes',
|
|
63
|
+
'show_categories' => 'yes',
|
|
64
|
+
],
|
|
65
|
+
'intro-text' => [
|
|
66
|
+
'show_primary_button' => 'yes',
|
|
67
|
+
'show_secondary_button' => 'yes',
|
|
68
|
+
'primary_button_text' => __( 'Get started', 'sociallane-elements' ),
|
|
69
|
+
'secondary_button_text' => __( 'Learn more', 'sociallane-elements' ),
|
|
70
|
+
],
|
|
71
|
+
'intro-pattern' => [
|
|
72
|
+
'show_primary_button' => 'yes',
|
|
73
|
+
'show_secondary_button' => 'yes',
|
|
74
|
+
],
|
|
75
|
+
'form-contact' => [
|
|
76
|
+
'headline' => __( 'Get in touch', 'sociallane-elements' ),
|
|
77
|
+
'author_avatar' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
78
|
+
'author_avatar_alt' => '',
|
|
79
|
+
'description' => __( 'Send us a message and we’ll get back to you.', 'sociallane-elements' ),
|
|
80
|
+
'form_shortcode' => '[gravityform id="1" title="false" description="false"]',
|
|
81
|
+
],
|
|
82
|
+
'pricing-table' => [
|
|
83
|
+
'headline' => __( 'Choose your plan', 'sociallane-elements' ),
|
|
84
|
+
],
|
|
85
|
+
'section-stats' => [
|
|
86
|
+
'headline' => __( 'By the numbers', 'sociallane-elements' ),
|
|
87
|
+
],
|
|
88
|
+
'testimonial-quote' => [
|
|
89
|
+
'show_quote' => 'yes',
|
|
90
|
+
'quote' => __( 'This is a sample testimonial for the preview. The widget will look correct with real content.', 'sociallane-elements' ),
|
|
91
|
+
'show_author' => 'yes',
|
|
92
|
+
'author_name' => __( 'Jane Doe', 'sociallane-elements' ),
|
|
93
|
+
'author_title' => __( 'Customer', 'sociallane-elements' ),
|
|
94
|
+
'author_icon' => [ 'value' => 'eicon-user-circle-o', 'library' => 'elementor' ],
|
|
95
|
+
],
|
|
96
|
+
'client-logos' => [
|
|
97
|
+
'headline' => __( 'Trusted by teams everywhere', 'sociallane-elements' ),
|
|
98
|
+
'clients' => [
|
|
99
|
+
[ 'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'logo_alt' => 'Client 1', 'name' => 'Client 1', 'logo_url' => [ 'url' => '#' ] ],
|
|
100
|
+
[ 'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'logo_alt' => 'Client 2', 'name' => 'Client 2', 'logo_url' => [ 'url' => '#' ] ],
|
|
101
|
+
[ 'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'logo_alt' => 'Client 3', 'name' => 'Client 3', 'logo_url' => [ 'url' => '#' ] ],
|
|
102
|
+
[ 'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'logo_alt' => 'Client 4', 'name' => 'Client 4', 'logo_url' => [ 'url' => '#' ] ],
|
|
103
|
+
],
|
|
104
|
+
],
|
|
105
|
+
'faq-stacked' => [
|
|
106
|
+
'show_title' => 'yes',
|
|
107
|
+
'title' => __( 'Frequently asked questions', 'sociallane-elements' ),
|
|
108
|
+
'show_description' => 'yes',
|
|
109
|
+
'description' => __( 'Common questions and answers for preview.', 'sociallane-elements' ),
|
|
110
|
+
'faq_items' => [
|
|
111
|
+
[ 'question' => __( 'First question?', 'sociallane-elements' ), 'answer' => __( 'Answer for the first question.', 'sociallane-elements' ) ],
|
|
112
|
+
[ 'question' => __( 'Second question?', 'sociallane-elements' ), 'answer' => __( 'Answer for the second question.', 'sociallane-elements' ) ],
|
|
113
|
+
[ 'question' => __( 'Third question?', 'sociallane-elements' ), 'answer' => __( 'Answer for the third question.', 'sociallane-elements' ) ],
|
|
114
|
+
],
|
|
115
|
+
],
|
|
116
|
+
'faq-split' => [
|
|
117
|
+
'show_title' => 'yes',
|
|
118
|
+
'title' => __( 'Frequently asked questions', 'sociallane-elements' ),
|
|
119
|
+
'show_description' => 'yes',
|
|
120
|
+
'description' => __( 'Common questions and answers for preview.', 'sociallane-elements' ),
|
|
121
|
+
'faq_items' => [
|
|
122
|
+
[ 'question' => __( 'First question?', 'sociallane-elements' ), 'answer' => __( 'Answer for the first question.', 'sociallane-elements' ) ],
|
|
123
|
+
[ 'question' => __( 'Second question?', 'sociallane-elements' ), 'answer' => __( 'Answer for the second question.', 'sociallane-elements' ) ],
|
|
124
|
+
],
|
|
125
|
+
],
|
|
126
|
+
'faq-centered' => [
|
|
127
|
+
'show_title' => 'yes',
|
|
128
|
+
'title' => __( 'Frequently asked questions', 'sociallane-elements' ),
|
|
129
|
+
'show_description' => 'yes',
|
|
130
|
+
'description' => __( 'Common questions and answers for preview.', 'sociallane-elements' ),
|
|
131
|
+
'faq_items' => [
|
|
132
|
+
[ 'question' => __( 'First question?', 'sociallane-elements' ), 'answer' => __( 'Answer for the first question.', 'sociallane-elements' ) ],
|
|
133
|
+
[ 'question' => __( 'Second question?', 'sociallane-elements' ), 'answer' => __( 'Answer for the second question.', 'sociallane-elements' ) ],
|
|
134
|
+
],
|
|
135
|
+
],
|
|
136
|
+
'cta-banner' => [
|
|
137
|
+
'headline' => __( 'Ready to get started?', 'sociallane-elements' ),
|
|
138
|
+
'description' => __( 'Join thousands of teams already using our product.', 'sociallane-elements' ),
|
|
139
|
+
],
|
|
140
|
+
'cta-split' => [
|
|
141
|
+
'headline' => __( 'Ready to get started?', 'sociallane-elements' ),
|
|
142
|
+
'description' => __( 'Join thousands of teams already using our product.', 'sociallane-elements' ),
|
|
143
|
+
],
|
|
144
|
+
'cta-notify' => [
|
|
145
|
+
'headline' => __( 'Stay in the loop', 'sociallane-elements' ),
|
|
146
|
+
'description' => __( 'Subscribe for updates and news.', 'sociallane-elements' ),
|
|
147
|
+
'form_shortcode' => '[gravityform id="1" title="false" description="false"]',
|
|
148
|
+
],
|
|
149
|
+
'newsletter-card' => [
|
|
150
|
+
'headline' => __( 'Newsletter', 'sociallane-elements' ),
|
|
151
|
+
'description' => __( 'Subscribe for updates.', 'sociallane-elements' ),
|
|
152
|
+
'form_shortcode' => '[gravityform id="1" title="false" description="false"]',
|
|
153
|
+
],
|
|
154
|
+
'newsletter-section' => [
|
|
155
|
+
'headline' => __( 'Newsletter', 'sociallane-elements' ),
|
|
156
|
+
'description' => __( 'Subscribe for updates.', 'sociallane-elements' ),
|
|
157
|
+
'form_shortcode' => '[gravityform id="1" title="false" description="false"]',
|
|
158
|
+
],
|
|
159
|
+
'hero-announcement' => [
|
|
160
|
+
'show_logo' => 'yes',
|
|
161
|
+
'logo' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
162
|
+
'logo_alt' => '',
|
|
163
|
+
'headline' => __( 'Welcome', 'sociallane-elements' ),
|
|
164
|
+
'description' => __( 'A short announcement or hero message for the preview.', 'sociallane-elements' ),
|
|
165
|
+
],
|
|
166
|
+
'hero-centered-image' => [
|
|
167
|
+
'headline' => __( 'Preview headline', 'sociallane-elements' ),
|
|
168
|
+
'description' => __( 'Centered hero with image below.', 'sociallane-elements' ),
|
|
169
|
+
'show_background' => 'yes',
|
|
170
|
+
'background_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
171
|
+
'background_image_alt' => '',
|
|
172
|
+
],
|
|
173
|
+
'hero-stacked-image' => [
|
|
174
|
+
'headline' => __( 'Preview headline', 'sociallane-elements' ),
|
|
175
|
+
'description' => __( 'Hero with stacked image.', 'sociallane-elements' ),
|
|
176
|
+
],
|
|
177
|
+
'hero-saas-centered' => [
|
|
178
|
+
'headline' => __( 'Build something great', 'sociallane-elements' ),
|
|
179
|
+
'description' => __( 'SaaS-style hero with centered content for preview.', 'sociallane-elements' ),
|
|
180
|
+
],
|
|
181
|
+
'hero-saas-split' => [
|
|
182
|
+
'headline' => __( 'Build something great', 'sociallane-elements' ),
|
|
183
|
+
'description' => __( 'SaaS-style hero with split layout.', 'sociallane-elements' ),
|
|
184
|
+
],
|
|
185
|
+
'hero-saas-stacked' => [
|
|
186
|
+
'headline' => __( 'Build something great', 'sociallane-elements' ),
|
|
187
|
+
'description' => __( 'SaaS-style hero with stacked layout.', 'sociallane-elements' ),
|
|
188
|
+
],
|
|
189
|
+
'hero-overlay' => [
|
|
190
|
+
'slides' => [
|
|
191
|
+
[
|
|
192
|
+
'headline' => __( 'Slide headline', 'sociallane-elements' ),
|
|
193
|
+
'description' => __( 'Slide description for preview.', 'sociallane-elements' ),
|
|
194
|
+
'image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
195
|
+
'cta_text' => __( 'Learn more', 'sociallane-elements' ),
|
|
196
|
+
'cta_url' => [ 'url' => '#' ],
|
|
197
|
+
],
|
|
198
|
+
],
|
|
199
|
+
],
|
|
200
|
+
'hero-overlay-single' => [
|
|
201
|
+
'slides' => [
|
|
202
|
+
[
|
|
203
|
+
'headline' => __( 'Slide headline', 'sociallane-elements' ),
|
|
204
|
+
'description' => __( 'Slide description for preview.', 'sociallane-elements' ),
|
|
205
|
+
'image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
206
|
+
'cta_text' => __( 'Learn more', 'sociallane-elements' ),
|
|
207
|
+
'cta_url' => [ 'url' => '#' ],
|
|
208
|
+
],
|
|
209
|
+
],
|
|
210
|
+
],
|
|
211
|
+
'hero-overlay-slider' => [
|
|
212
|
+
'slides' => [
|
|
213
|
+
[
|
|
214
|
+
'headline' => __( 'Slide one', 'sociallane-elements' ),
|
|
215
|
+
'description' => __( 'First slide for preview.', 'sociallane-elements' ),
|
|
216
|
+
'image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
217
|
+
'cta_text' => __( 'Learn more', 'sociallane-elements' ),
|
|
218
|
+
'cta_url' => [ 'url' => '#' ],
|
|
219
|
+
],
|
|
220
|
+
[
|
|
221
|
+
'headline' => __( 'Slide two', 'sociallane-elements' ),
|
|
222
|
+
'description' => __( 'Second slide for preview.', 'sociallane-elements' ),
|
|
223
|
+
'image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
224
|
+
'cta_text' => __( 'Learn more', 'sociallane-elements' ),
|
|
225
|
+
'cta_url' => [ 'url' => '#' ],
|
|
226
|
+
],
|
|
227
|
+
],
|
|
228
|
+
],
|
|
229
|
+
'content-block' => [
|
|
230
|
+
'show_eyebrow' => 'yes',
|
|
231
|
+
'eyebrow' => __( 'Overview', 'sociallane-elements' ),
|
|
232
|
+
'content_blocks' => [
|
|
233
|
+
[
|
|
234
|
+
'show_title' => 'yes',
|
|
235
|
+
'title' => __( 'Content block preview', 'sociallane-elements' ),
|
|
236
|
+
'title_tag' => 'h2',
|
|
237
|
+
'show_content' => 'yes',
|
|
238
|
+
'content' => __( 'This is sample content for the content block widget preview. You can add multiple blocks with titles and body text, an optional image, and a call-to-action button.', 'sociallane-elements' ),
|
|
239
|
+
],
|
|
240
|
+
[
|
|
241
|
+
'show_title' => 'yes',
|
|
242
|
+
'title' => __( 'Second block', 'sociallane-elements' ),
|
|
243
|
+
'title_tag' => 'h3',
|
|
244
|
+
'show_content' => 'yes',
|
|
245
|
+
'content' => __( 'A second block of dummy content so the layout and styling are visible in the preview. Replace with your own copy when building the page.', 'sociallane-elements' ),
|
|
246
|
+
],
|
|
247
|
+
],
|
|
248
|
+
'show_image' => 'yes',
|
|
249
|
+
'image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
250
|
+
'image_alt' => __( 'Preview', 'sociallane-elements' ),
|
|
251
|
+
'show_cta' => 'yes',
|
|
252
|
+
'cta_text' => __( 'Learn more', 'sociallane-elements' ),
|
|
253
|
+
'cta_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
254
|
+
],
|
|
255
|
+
'card-hover-reveal' => [
|
|
256
|
+
'headline' => __( 'Card title', 'sociallane-elements' ),
|
|
257
|
+
'description' => __( 'Card description for preview.', 'sociallane-elements' ),
|
|
258
|
+
'cards' => [
|
|
259
|
+
[ 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '', 'title' => __( 'Card one', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_title' => 'yes', 'show_description' => 'yes', 'show_cta' => 'yes', 'cta_text' => __( 'Learn more', 'sociallane-elements' ), 'cta_url' => [ 'url' => '#' ], 'link' => [ 'url' => '#' ] ],
|
|
260
|
+
[ 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '', 'title' => __( 'Card two', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_title' => 'yes', 'show_description' => 'yes', 'show_cta' => 'yes', 'cta_text' => __( 'Learn more', 'sociallane-elements' ), 'cta_url' => [ 'url' => '#' ], 'link' => [ 'url' => '#' ] ],
|
|
261
|
+
[ 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '', 'title' => __( 'Card three', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_title' => 'yes', 'show_description' => 'yes', 'show_cta' => 'yes', 'cta_text' => __( 'Learn more', 'sociallane-elements' ), 'cta_url' => [ 'url' => '#' ], 'link' => [ 'url' => '#' ] ],
|
|
262
|
+
],
|
|
263
|
+
],
|
|
264
|
+
'page-hero-left' => [
|
|
265
|
+
'headline' => __( 'Page title', 'sociallane-elements' ),
|
|
266
|
+
'description' => __( 'Optional page intro for preview.', 'sociallane-elements' ),
|
|
267
|
+
],
|
|
268
|
+
'page-hero-center' => [
|
|
269
|
+
'headline' => __( 'Page title', 'sociallane-elements' ),
|
|
270
|
+
'description' => __( 'Optional page intro for preview.', 'sociallane-elements' ),
|
|
271
|
+
],
|
|
272
|
+
'simple-page-hero' => [
|
|
273
|
+
'headline' => __( 'Page title', 'sociallane-elements' ),
|
|
274
|
+
],
|
|
275
|
+
'grid-case-studies' => [
|
|
276
|
+
'headline' => __( 'Case studies', 'sociallane-elements' ),
|
|
277
|
+
'eyebrow' => __( 'Work', 'sociallane-elements' ),
|
|
278
|
+
],
|
|
279
|
+
'grid-team' => [
|
|
280
|
+
'headline' => __( 'Our team', 'sociallane-elements' ),
|
|
281
|
+
'eyebrow' => __( 'Team', 'sociallane-elements' ),
|
|
282
|
+
'members' => [
|
|
283
|
+
[ 'name' => __( 'Jane Doe', 'sociallane-elements' ), 'title' => __( 'Lead', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '' ],
|
|
284
|
+
[ 'name' => __( 'John Smith', 'sociallane-elements' ), 'title' => __( 'Designer', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '' ],
|
|
285
|
+
[ 'name' => __( 'Alex Lee', 'sociallane-elements' ), 'title' => __( 'Developer', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '' ],
|
|
286
|
+
],
|
|
287
|
+
],
|
|
288
|
+
'feature-list' => [
|
|
289
|
+
'headline' => __( 'Features', 'sociallane-elements' ),
|
|
290
|
+
'description' => __( 'A list of features for preview.', 'sociallane-elements' ),
|
|
291
|
+
],
|
|
292
|
+
'feature-list-cta' => [
|
|
293
|
+
'headline' => __( 'Features', 'sociallane-elements' ),
|
|
294
|
+
'description' => __( 'Features with CTA for preview.', 'sociallane-elements' ),
|
|
295
|
+
],
|
|
296
|
+
'services' => [
|
|
297
|
+
'headline' => __( 'Our services', 'sociallane-elements' ),
|
|
298
|
+
'eyebrow' => __( 'Services', 'sociallane-elements' ),
|
|
299
|
+
],
|
|
300
|
+
'social-proof' => [
|
|
301
|
+
'headline' => __( 'Trusted by teams', 'sociallane-elements' ),
|
|
302
|
+
],
|
|
303
|
+
'social-proof-trust' => [
|
|
304
|
+
'headline' => __( 'Trusted by teams', 'sociallane-elements' ),
|
|
305
|
+
],
|
|
306
|
+
'testimonials-grid' => [
|
|
307
|
+
'headline' => __( 'What people say', 'sociallane-elements' ),
|
|
308
|
+
'testimonials' => [
|
|
309
|
+
[ 'card_title' => __( 'Quote one', 'sociallane-elements' ), 'quote' => __( 'Sample testimonial for preview.', 'sociallane-elements' ), 'name' => __( 'Jane Doe', 'sociallane-elements' ), 'role' => __( 'Customer', 'sociallane-elements' ), 'avatar' => [ 'url' => $placeholder_url, 'id' => 0 ] ],
|
|
310
|
+
[ 'card_title' => __( 'Quote two', 'sociallane-elements' ), 'quote' => __( 'Another sample for preview.', 'sociallane-elements' ), 'name' => __( 'John Smith', 'sociallane-elements' ), 'role' => __( 'Client', 'sociallane-elements' ), 'avatar' => [ 'url' => $placeholder_url, 'id' => 0 ] ],
|
|
311
|
+
],
|
|
312
|
+
],
|
|
313
|
+
'testimonials-masonry' => [
|
|
314
|
+
'headline' => __( 'What people say', 'sociallane-elements' ),
|
|
315
|
+
'testimonials' => [
|
|
316
|
+
[ 'card_title' => __( 'Quote one', 'sociallane-elements' ), 'quote' => __( 'Sample testimonial for preview.', 'sociallane-elements' ), 'name' => __( 'Jane Doe', 'sociallane-elements' ), 'role' => __( 'Customer', 'sociallane-elements' ), 'avatar' => [ 'url' => $placeholder_url, 'id' => 0 ] ],
|
|
317
|
+
[ 'card_title' => __( 'Quote two', 'sociallane-elements' ), 'quote' => __( 'Another sample for preview.', 'sociallane-elements' ), 'name' => __( 'John Smith', 'sociallane-elements' ), 'role' => __( 'Client', 'sociallane-elements' ), 'avatar' => [ 'url' => $placeholder_url, 'id' => 0 ] ],
|
|
318
|
+
],
|
|
319
|
+
],
|
|
320
|
+
'testimonials-bento' => [
|
|
321
|
+
'headline' => __( 'What people say', 'sociallane-elements' ),
|
|
322
|
+
'testimonials' => [
|
|
323
|
+
[ 'card_title' => __( 'Quote one', 'sociallane-elements' ), 'quote' => __( 'Sample testimonial for preview.', 'sociallane-elements' ), 'name' => __( 'Jane Doe', 'sociallane-elements' ), 'role' => __( 'Customer', 'sociallane-elements' ), 'avatar' => [ 'url' => $placeholder_url, 'id' => 0 ] ],
|
|
324
|
+
[ 'card_title' => __( 'Quote two', 'sociallane-elements' ), 'quote' => __( 'Another sample for preview.', 'sociallane-elements' ), 'name' => __( 'John Smith', 'sociallane-elements' ), 'role' => __( 'Client', 'sociallane-elements' ), 'avatar' => [ 'url' => $placeholder_url, 'id' => 0 ] ],
|
|
325
|
+
],
|
|
326
|
+
],
|
|
327
|
+
'bento-grid-4' => [
|
|
328
|
+
'eyebrow' => __( 'Preview', 'sociallane-elements' ),
|
|
329
|
+
'headline' => __( 'Bento grid', 'sociallane-elements' ),
|
|
330
|
+
'cell1_title' => __( 'Cell one', 'sociallane-elements' ), 'cell1_description' => __( 'Description.', 'sociallane-elements' ), 'cell1_visual' => 'image', 'cell1_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
331
|
+
'cell2_title' => __( 'Cell two', 'sociallane-elements' ), 'cell2_description' => __( 'Description.', 'sociallane-elements' ), 'cell2_visual' => 'image', 'cell2_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
332
|
+
'cell3_title' => __( 'Cell three', 'sociallane-elements' ), 'cell3_description' => __( 'Description.', 'sociallane-elements' ), 'cell3_visual' => 'icons', 'cell3_icon_1' => [ 'value' => 'eicon-cog', 'library' => 'elementor' ], 'cell3_icon_2' => [ 'value' => 'eicon-sync', 'library' => 'elementor' ], 'cell3_icon_3' => [ 'value' => 'eicon-lock-user', 'library' => 'elementor' ],
|
|
333
|
+
'cell4_title' => __( 'Cell four', 'sociallane-elements' ), 'cell4_description' => __( 'Description.', 'sociallane-elements' ), 'cell4_visual' => 'image', 'cell4_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
334
|
+
],
|
|
335
|
+
'bento-grid-5' => [
|
|
336
|
+
'eyebrow' => __( 'Preview', 'sociallane-elements' ),
|
|
337
|
+
'headline' => __( 'Bento grid', 'sociallane-elements' ),
|
|
338
|
+
],
|
|
339
|
+
'bento-grid-6' => [
|
|
340
|
+
'eyebrow' => __( 'Preview', 'sociallane-elements' ),
|
|
341
|
+
'headline' => __( 'Bento grid', 'sociallane-elements' ),
|
|
342
|
+
],
|
|
343
|
+
'feature-list' => [
|
|
344
|
+
'items' => [
|
|
345
|
+
[ 'label' => __( 'Feature one', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ) ],
|
|
346
|
+
[ 'label' => __( 'Feature two', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ) ],
|
|
347
|
+
[ 'label' => __( 'Feature three', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ) ],
|
|
348
|
+
],
|
|
349
|
+
],
|
|
350
|
+
'hero-collage' => [
|
|
351
|
+
'headline' => __( 'Hero collage', 'sociallane-elements' ),
|
|
352
|
+
'description' => __( 'Hero with multi-image collage for preview.', 'sociallane-elements' ),
|
|
353
|
+
],
|
|
354
|
+
// Nav (all variants): logo image placeholder + CTA; menu=0 so no menu items in preview
|
|
355
|
+
'nav-default' => [
|
|
356
|
+
'show_logo' => 'yes',
|
|
357
|
+
'logo_type' => 'image',
|
|
358
|
+
'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
359
|
+
'logo_alt' => __( 'Preview', 'sociallane-elements' ),
|
|
360
|
+
'logo_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
361
|
+
'show_cta' => 'yes',
|
|
362
|
+
'cta_text' => __( 'Get started', 'sociallane-elements' ),
|
|
363
|
+
'cta_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
364
|
+
],
|
|
365
|
+
'nav-centered' => [
|
|
366
|
+
'show_logo' => 'yes',
|
|
367
|
+
'logo_type' => 'image',
|
|
368
|
+
'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
369
|
+
'logo_alt' => __( 'Preview', 'sociallane-elements' ),
|
|
370
|
+
'logo_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
371
|
+
'show_cta' => 'yes',
|
|
372
|
+
'cta_text' => __( 'Get started', 'sociallane-elements' ),
|
|
373
|
+
'cta_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
374
|
+
],
|
|
375
|
+
'nav-minimal' => [
|
|
376
|
+
'show_logo' => 'yes',
|
|
377
|
+
'logo_type' => 'image',
|
|
378
|
+
'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
379
|
+
'logo_alt' => __( 'Preview', 'sociallane-elements' ),
|
|
380
|
+
'logo_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
381
|
+
'show_cta' => 'yes',
|
|
382
|
+
'cta_text' => __( 'Get started', 'sociallane-elements' ),
|
|
383
|
+
'cta_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
384
|
+
],
|
|
385
|
+
'nav-compact' => [
|
|
386
|
+
'show_logo' => 'yes',
|
|
387
|
+
'logo_type' => 'image',
|
|
388
|
+
'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
389
|
+
'logo_alt' => __( 'Preview', 'sociallane-elements' ),
|
|
390
|
+
'logo_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
391
|
+
'show_cta' => 'yes',
|
|
392
|
+
'cta_text' => __( 'Get started', 'sociallane-elements' ),
|
|
393
|
+
'cta_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
394
|
+
],
|
|
395
|
+
'nav-floating' => [
|
|
396
|
+
'show_logo' => 'yes',
|
|
397
|
+
'logo_type' => 'image',
|
|
398
|
+
'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
399
|
+
'logo_alt' => __( 'Preview', 'sociallane-elements' ),
|
|
400
|
+
'logo_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
401
|
+
'show_cta' => 'yes',
|
|
402
|
+
'cta_text' => __( 'Get started', 'sociallane-elements' ),
|
|
403
|
+
'cta_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
404
|
+
],
|
|
405
|
+
// Footers: logo image placeholder, CTA/copyright, dummy menu columns for preview
|
|
406
|
+
'footer' => [
|
|
407
|
+
'show_logo' => 'yes',
|
|
408
|
+
'logo_type' => 'image',
|
|
409
|
+
'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
410
|
+
'logo_alt' => __( 'Preview', 'sociallane-elements' ),
|
|
411
|
+
'logo_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
412
|
+
'show_cta' => 'yes',
|
|
413
|
+
'cta_heading' => __( 'Get in touch', 'sociallane-elements' ),
|
|
414
|
+
'cta_primary_text' => __( 'Contact', 'sociallane-elements' ),
|
|
415
|
+
'cta_primary_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
416
|
+
'cta_secondary_text' => __( 'Learn more', 'sociallane-elements' ),
|
|
417
|
+
'cta_secondary_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
418
|
+
'show_copyright' => 'yes',
|
|
419
|
+
'copyright_text' => '© ' . gmdate( 'Y' ) . ' ' . __( 'Preview. All rights reserved.', 'sociallane-elements' ),
|
|
420
|
+
'preview_columns' => [
|
|
421
|
+
[ 'heading' => __( 'Products', 'sociallane-elements' ), 'links' => [ [ 'label' => __( 'Link one', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ], [ 'label' => __( 'Link two', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ] ] ],
|
|
422
|
+
[ 'heading' => __( 'Company', 'sociallane-elements' ), 'links' => [ [ 'label' => __( 'About', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ], [ 'label' => __( 'Contact', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ] ] ],
|
|
423
|
+
[ 'heading' => __( 'Resources', 'sociallane-elements' ), 'links' => [ [ 'label' => __( 'Blog', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ], [ 'label' => __( 'Help', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ] ] ],
|
|
424
|
+
],
|
|
425
|
+
],
|
|
426
|
+
'footer-brand' => [
|
|
427
|
+
'show_logo' => 'yes',
|
|
428
|
+
'logo_type' => 'image',
|
|
429
|
+
'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
430
|
+
'logo_alt' => __( 'Preview', 'sociallane-elements' ),
|
|
431
|
+
'logo_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
432
|
+
'show_description' => 'yes',
|
|
433
|
+
'description' => __( 'Footer brand description for preview.', 'sociallane-elements' ),
|
|
434
|
+
'show_copyright' => 'yes',
|
|
435
|
+
'copyright_text' => '© ' . gmdate( 'Y' ) . ' ' . __( 'Preview.', 'sociallane-elements' ),
|
|
436
|
+
'social_links' => [
|
|
437
|
+
[ 'icon' => [ 'value' => 'fab fa-linkedin', 'library' => 'fa-brands' ], 'url' => [ 'url' => '#' ], 'aria_label' => 'LinkedIn' ],
|
|
438
|
+
[ 'icon' => [ 'value' => 'fab fa-twitter', 'library' => 'fa-brands' ], 'url' => [ 'url' => '#' ], 'aria_label' => 'Twitter' ],
|
|
439
|
+
],
|
|
440
|
+
'preview_columns' => [
|
|
441
|
+
[ 'heading' => __( 'Products', 'sociallane-elements' ), 'links' => [ [ 'label' => __( 'Link one', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ], [ 'label' => __( 'Link two', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ] ] ],
|
|
442
|
+
[ 'heading' => __( 'Company', 'sociallane-elements' ), 'links' => [ [ 'label' => __( 'About', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ], [ 'label' => __( 'Contact', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ] ] ],
|
|
443
|
+
],
|
|
444
|
+
],
|
|
445
|
+
'footer-links-contact' => [
|
|
446
|
+
'show_logo' => 'yes',
|
|
447
|
+
'logo_type' => 'image',
|
|
448
|
+
'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
449
|
+
'logo_alt' => __( 'Preview', 'sociallane-elements' ),
|
|
450
|
+
'logo_url' => [ 'url' => '#', 'is_external' => '', 'nofollow' => '' ],
|
|
451
|
+
'show_contact' => 'yes',
|
|
452
|
+
'contact_heading' => __( 'Contact', 'sociallane-elements' ),
|
|
453
|
+
'address_line_1' => __( '123 Preview Street', 'sociallane-elements' ),
|
|
454
|
+
'phone' => '+1 234 567 8900',
|
|
455
|
+
'email' => 'hello@example.com',
|
|
456
|
+
'show_copyright' => 'yes',
|
|
457
|
+
'copyright_text' => '© ' . gmdate( 'Y' ) . ' ' . __( 'Preview.', 'sociallane-elements' ),
|
|
458
|
+
'bottom_links' => [
|
|
459
|
+
[ 'label' => __( 'Privacy', 'sociallane-elements' ), 'url' => [ 'url' => '#' ] ],
|
|
460
|
+
[ 'label' => __( 'Terms', 'sociallane-elements' ), 'url' => [ 'url' => '#' ] ],
|
|
461
|
+
],
|
|
462
|
+
'social_links' => [
|
|
463
|
+
[ 'icon' => [ 'value' => 'fab fa-linkedin', 'library' => 'fa-brands' ], 'url' => [ 'url' => '#' ], 'aria_label' => 'LinkedIn' ],
|
|
464
|
+
],
|
|
465
|
+
'preview_columns' => [
|
|
466
|
+
[ 'heading' => __( 'Products', 'sociallane-elements' ), 'links' => [ [ 'label' => __( 'Link one', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ], [ 'label' => __( 'Link two', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ] ] ],
|
|
467
|
+
[ 'heading' => __( 'Company', 'sociallane-elements' ), 'links' => [ [ 'label' => __( 'About', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ], [ 'label' => __( 'Contact', 'sociallane-elements' ), 'href' => '#', 'attrs' => '' ] ] ],
|
|
468
|
+
],
|
|
469
|
+
],
|
|
470
|
+
// Logo grids: headline + logos with images
|
|
471
|
+
'logo-grid-centered' => [
|
|
472
|
+
'headline' => __( 'Trusted by teams', 'sociallane-elements' ),
|
|
473
|
+
'description' => __( 'Logo grid preview.', 'sociallane-elements' ),
|
|
474
|
+
'logos' => [
|
|
475
|
+
[ 'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'logo_url' => [ 'url' => '#' ], 'logo_alt' => 'Logo 1' ],
|
|
476
|
+
[ 'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'logo_url' => [ 'url' => '#' ], 'logo_alt' => 'Logo 2' ],
|
|
477
|
+
[ 'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'logo_url' => [ 'url' => '#' ], 'logo_alt' => 'Logo 3' ],
|
|
478
|
+
],
|
|
479
|
+
],
|
|
480
|
+
'logo-grid-row' => [
|
|
481
|
+
'headline' => __( 'Trusted by teams', 'sociallane-elements' ),
|
|
482
|
+
'description' => __( 'Logo grid preview.', 'sociallane-elements' ),
|
|
483
|
+
'logos' => [
|
|
484
|
+
[ 'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'logo_url' => [ 'url' => '#' ], 'logo_alt' => 'Logo 1' ],
|
|
485
|
+
[ 'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'logo_url' => [ 'url' => '#' ], 'logo_alt' => 'Logo 2' ],
|
|
486
|
+
],
|
|
487
|
+
],
|
|
488
|
+
'logo-grid-split' => [
|
|
489
|
+
'headline' => __( 'Trusted by teams', 'sociallane-elements' ),
|
|
490
|
+
'description' => __( 'Logo grid preview.', 'sociallane-elements' ),
|
|
491
|
+
'logos' => [
|
|
492
|
+
[ 'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'logo_url' => [ 'url' => '#' ], 'logo_alt' => 'Logo 1' ],
|
|
493
|
+
[ 'logo_image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'logo_url' => [ 'url' => '#' ], 'logo_alt' => 'Logo 2' ],
|
|
494
|
+
],
|
|
495
|
+
],
|
|
496
|
+
// Feature grid / feature list CTA: features repeater
|
|
497
|
+
'feature-grid' => [
|
|
498
|
+
'show_headline' => 'yes',
|
|
499
|
+
'headline' => __( 'Features', 'sociallane-elements' ),
|
|
500
|
+
'features' => [
|
|
501
|
+
[ 'title' => __( 'Feature one', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_link' => 'yes', 'link_text' => __( 'Learn more', 'sociallane-elements' ), 'link_url' => [ 'url' => '#' ], 'icon' => [ 'value' => 'eicon-device-responsive', 'library' => 'elementor' ] ],
|
|
502
|
+
[ 'title' => __( 'Feature two', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_link' => 'yes', 'link_text' => __( 'Learn more', 'sociallane-elements' ), 'link_url' => [ 'url' => '#' ], 'icon' => [ 'value' => 'eicon-slider-push', 'library' => 'elementor' ] ],
|
|
503
|
+
[ 'title' => __( 'Feature three', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_link' => 'yes', 'link_text' => __( 'Learn more', 'sociallane-elements' ), 'link_url' => [ 'url' => '#' ], 'icon' => [ 'value' => 'eicon-document-file', 'library' => 'elementor' ] ],
|
|
504
|
+
],
|
|
505
|
+
],
|
|
506
|
+
'feature-grid-centered' => [
|
|
507
|
+
'show_headline' => 'yes',
|
|
508
|
+
'headline' => __( 'Features', 'sociallane-elements' ),
|
|
509
|
+
'features' => [
|
|
510
|
+
[ 'title' => __( 'Feature one', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_link' => 'yes', 'link_text' => __( 'Learn more', 'sociallane-elements' ), 'link_url' => [ 'url' => '#' ], 'icon' => [ 'value' => 'eicon-device-responsive', 'library' => 'elementor' ] ],
|
|
511
|
+
[ 'title' => __( 'Feature two', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_link' => 'yes', 'link_text' => __( 'Learn more', 'sociallane-elements' ), 'link_url' => [ 'url' => '#' ], 'icon' => [ 'value' => 'eicon-slider-push', 'library' => 'elementor' ] ],
|
|
512
|
+
[ 'title' => __( 'Feature three', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_link' => 'yes', 'link_text' => __( 'Learn more', 'sociallane-elements' ), 'link_url' => [ 'url' => '#' ], 'icon' => [ 'value' => 'eicon-document-file', 'library' => 'elementor' ] ],
|
|
513
|
+
[ 'title' => __( 'Feature four', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_link' => 'yes', 'link_text' => __( 'Learn more', 'sociallane-elements' ), 'link_url' => [ 'url' => '#' ], 'icon' => [ 'value' => 'eicon-comments', 'library' => 'elementor' ] ],
|
|
514
|
+
],
|
|
515
|
+
],
|
|
516
|
+
'feature-list-cta' => [
|
|
517
|
+
'headline' => __( 'Features', 'sociallane-elements' ),
|
|
518
|
+
'features' => [
|
|
519
|
+
[ 'title' => __( 'Feature one', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_link' => 'yes', 'link_text' => __( 'Learn more', 'sociallane-elements' ), 'link_url' => [ 'url' => '#' ], 'icon' => [ 'value' => 'eicon-check', 'library' => 'elementor' ] ],
|
|
520
|
+
[ 'title' => __( 'Feature two', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_link' => 'yes', 'link_text' => __( 'Learn more', 'sociallane-elements' ), 'link_url' => [ 'url' => '#' ], 'icon' => [ 'value' => 'eicon-check', 'library' => 'elementor' ] ],
|
|
521
|
+
],
|
|
522
|
+
],
|
|
523
|
+
// Bento portfolio: items with image, title
|
|
524
|
+
'bento-portfolio-4' => [
|
|
525
|
+
'eyebrow' => __( 'Work', 'sociallane-elements' ),
|
|
526
|
+
'headline' => __( 'Portfolio', 'sociallane-elements' ),
|
|
527
|
+
'items' => [
|
|
528
|
+
[ 'title' => __( 'Project one', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '', 'show_category' => 'yes', 'show_description' => 'yes', 'case_study_url' => [ 'url' => '#' ], 'live_preview_url' => [ 'url' => '#' ] ],
|
|
529
|
+
[ 'title' => __( 'Project two', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '', 'show_category' => 'yes', 'show_description' => 'yes', 'case_study_url' => [ 'url' => '#' ], 'live_preview_url' => [ 'url' => '#' ] ],
|
|
530
|
+
[ 'title' => __( 'Project three', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '', 'show_category' => 'yes', 'show_description' => 'yes', 'case_study_url' => [ 'url' => '#' ], 'live_preview_url' => [ 'url' => '#' ] ],
|
|
531
|
+
],
|
|
532
|
+
],
|
|
533
|
+
'bento-portfolio-5' => [
|
|
534
|
+
'eyebrow' => __( 'Work', 'sociallane-elements' ),
|
|
535
|
+
'headline' => __( 'Portfolio', 'sociallane-elements' ),
|
|
536
|
+
'items' => [
|
|
537
|
+
[ 'title' => __( 'Project one', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '', 'case_study_url' => [ 'url' => '#' ], 'live_preview_url' => [ 'url' => '#' ] ],
|
|
538
|
+
[ 'title' => __( 'Project two', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '', 'case_study_url' => [ 'url' => '#' ], 'live_preview_url' => [ 'url' => '#' ] ],
|
|
539
|
+
],
|
|
540
|
+
],
|
|
541
|
+
'bento-portfolio-6' => [
|
|
542
|
+
'eyebrow' => __( 'Work', 'sociallane-elements' ),
|
|
543
|
+
'headline' => __( 'Portfolio', 'sociallane-elements' ),
|
|
544
|
+
'items' => [
|
|
545
|
+
[ 'title' => __( 'Project one', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '', 'case_study_url' => [ 'url' => '#' ], 'live_preview_url' => [ 'url' => '#' ] ],
|
|
546
|
+
[ 'title' => __( 'Project two', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'image_alt' => '', 'case_study_url' => [ 'url' => '#' ], 'live_preview_url' => [ 'url' => '#' ] ],
|
|
547
|
+
],
|
|
548
|
+
],
|
|
549
|
+
// Section stats: stats repeater
|
|
550
|
+
'section-stats' => [
|
|
551
|
+
'headline' => __( 'By the numbers', 'sociallane-elements' ),
|
|
552
|
+
'show_description' => 'yes',
|
|
553
|
+
'description' => __( 'Key metrics for preview.', 'sociallane-elements' ),
|
|
554
|
+
'stats' => [
|
|
555
|
+
[ 'stat' => '99%', 'label' => __( 'Satisfaction', 'sociallane-elements' ), 'description' => __( 'Customer satisfaction rate.', 'sociallane-elements' ) ],
|
|
556
|
+
[ 'stat' => '50+', 'label' => __( 'Clients', 'sociallane-elements' ), 'description' => __( 'Happy clients.', 'sociallane-elements' ) ],
|
|
557
|
+
[ 'stat' => '24/7', 'label' => __( 'Support', 'sociallane-elements' ), 'description' => __( 'Always here to help.', 'sociallane-elements' ) ],
|
|
558
|
+
],
|
|
559
|
+
],
|
|
560
|
+
// Pricing: plans repeater
|
|
561
|
+
'pricing-table' => [
|
|
562
|
+
'headline' => __( 'Choose your plan', 'sociallane-elements' ),
|
|
563
|
+
'show_description' => 'yes',
|
|
564
|
+
'description' => __( 'Pricing plans for preview.', 'sociallane-elements' ),
|
|
565
|
+
'plans' => [
|
|
566
|
+
[ 'plan_name' => __( 'Starter', 'sociallane-elements' ), 'price_monthly' => '$9', 'price_yearly' => '$90', 'cta_text' => __( 'Get started', 'sociallane-elements' ), 'cta_url' => [ 'url' => '#' ], 'features' => [ [ 'text' => __( 'Feature one', 'sociallane-elements' ), 'icon' => [ 'value' => 'eicon-check', 'library' => 'elementor' ] ], [ 'text' => __( 'Feature two', 'sociallane-elements' ), 'icon' => [ 'value' => 'eicon-check', 'library' => 'elementor' ] ] ] ],
|
|
567
|
+
[ 'plan_name' => __( 'Pro', 'sociallane-elements' ), 'price_monthly' => '$29', 'price_yearly' => '$290', 'is_popular' => 'yes', 'popular_badge_text' => __( 'Popular', 'sociallane-elements' ), 'cta_text' => __( 'Get started', 'sociallane-elements' ), 'cta_url' => [ 'url' => '#' ], 'features' => [ [ 'text' => __( 'Everything in Starter', 'sociallane-elements' ), 'icon' => [ 'value' => 'eicon-check', 'library' => 'elementor' ] ], [ 'text' => __( 'Feature three', 'sociallane-elements' ), 'icon' => [ 'value' => 'eicon-check', 'library' => 'elementor' ] ] ] ],
|
|
568
|
+
],
|
|
569
|
+
],
|
|
570
|
+
// Social proof: stats repeater + image
|
|
571
|
+
'social-proof' => [
|
|
572
|
+
'headline' => __( 'Trusted by teams', 'sociallane-elements' ),
|
|
573
|
+
'show_description' => 'yes',
|
|
574
|
+
'description' => __( 'Why teams choose us.', 'sociallane-elements' ),
|
|
575
|
+
'show_image' => 'yes',
|
|
576
|
+
'stats' => [
|
|
577
|
+
[ 'stat' => __( '10k+', 'sociallane-elements' ), 'description' => __( 'Users', 'sociallane-elements' ), 'icon' => [ 'value' => 'eicon-user', 'library' => 'elementor' ] ],
|
|
578
|
+
[ 'stat' => __( '99%', 'sociallane-elements' ), 'description' => __( 'Uptime', 'sociallane-elements' ), 'icon' => [ 'value' => 'eicon-sync', 'library' => 'elementor' ] ],
|
|
579
|
+
[ 'stat' => __( '24/7', 'sociallane-elements' ), 'description' => __( 'Support', 'sociallane-elements' ), 'icon' => [ 'value' => 'eicon-headset', 'library' => 'elementor' ] ],
|
|
580
|
+
],
|
|
581
|
+
],
|
|
582
|
+
'social-proof-trust' => [
|
|
583
|
+
'headline' => __( 'Trusted by teams', 'sociallane-elements' ),
|
|
584
|
+
'show_description' => 'yes',
|
|
585
|
+
'description' => __( 'Why teams choose us.', 'sociallane-elements' ),
|
|
586
|
+
'stats' => [
|
|
587
|
+
[ 'stat' => __( '10k+', 'sociallane-elements' ), 'description' => __( 'Users', 'sociallane-elements' ), 'icon' => [ 'value' => 'eicon-user', 'library' => 'elementor' ] ],
|
|
588
|
+
[ 'stat' => __( '99%', 'sociallane-elements' ), 'description' => __( 'Uptime', 'sociallane-elements' ), 'icon' => [ 'value' => 'eicon-sync', 'library' => 'elementor' ] ],
|
|
589
|
+
],
|
|
590
|
+
],
|
|
591
|
+
// Grid case studies: cards repeater
|
|
592
|
+
'grid-case-studies' => [
|
|
593
|
+
'headline' => __( 'Case studies', 'sociallane-elements' ),
|
|
594
|
+
'eyebrow' => __( 'Work', 'sociallane-elements' ),
|
|
595
|
+
'cards' => [
|
|
596
|
+
[ 'year' => '2024', 'label' => __( 'Case study', 'sociallane-elements' ), 'title' => __( 'Project one', 'sociallane-elements' ), 'card_description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_link' => 'yes', 'link_text' => __( 'Read more', 'sociallane-elements' ), 'link_url' => [ 'url' => '#' ], 'icon' => [ 'value' => 'eicon-folder', 'library' => 'elementor' ] ],
|
|
597
|
+
[ 'year' => '2024', 'label' => __( 'Case study', 'sociallane-elements' ), 'title' => __( 'Project two', 'sociallane-elements' ), 'card_description' => __( 'Description for preview.', 'sociallane-elements' ), 'show_link' => 'yes', 'link_text' => __( 'Read more', 'sociallane-elements' ), 'link_url' => [ 'url' => '#' ], 'icon' => [ 'value' => 'eicon-folder', 'library' => 'elementor' ] ],
|
|
598
|
+
],
|
|
599
|
+
],
|
|
600
|
+
// Grid components: components repeater
|
|
601
|
+
'grid-components' => [
|
|
602
|
+
'headline' => __( 'Components', 'sociallane-elements' ),
|
|
603
|
+
'components' => [
|
|
604
|
+
[ 'title' => __( 'Component one', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'link' => [ 'url' => '#' ] ],
|
|
605
|
+
[ 'title' => __( 'Component two', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'link' => [ 'url' => '#' ] ],
|
|
606
|
+
[ 'title' => __( 'Component three', 'sociallane-elements' ), 'description' => __( 'Description for preview.', 'sociallane-elements' ), 'image' => [ 'url' => $placeholder_url, 'id' => 0 ], 'link' => [ 'url' => '#' ] ],
|
|
607
|
+
],
|
|
608
|
+
],
|
|
609
|
+
// Post grids: heading (posts come from WP_Query)
|
|
610
|
+
'blog-grid' => [
|
|
611
|
+
'show_heading' => 'yes',
|
|
612
|
+
'heading' => __( 'Latest posts', 'sociallane-elements' ),
|
|
613
|
+
'show_subtitle' => 'no',
|
|
614
|
+
],
|
|
615
|
+
'posts-grid' => [
|
|
616
|
+
'show_heading' => 'yes',
|
|
617
|
+
'heading' => __( 'Latest posts', 'sociallane-elements' ),
|
|
618
|
+
],
|
|
619
|
+
'posts-grid-overlay' => [
|
|
620
|
+
'show_heading' => 'yes',
|
|
621
|
+
'heading' => __( 'Latest posts', 'sociallane-elements' ),
|
|
622
|
+
],
|
|
623
|
+
// Dashboards: headline + eyebrow
|
|
624
|
+
'outreach-dashboard' => [
|
|
625
|
+
'show_eyebrow' => 'yes',
|
|
626
|
+
'eyebrow' => __( 'Dashboard', 'sociallane-elements' ),
|
|
627
|
+
'show_headline' => 'yes',
|
|
628
|
+
'headline' => __( 'Outreach dashboard', 'sociallane-elements' ),
|
|
629
|
+
'chat_system_message' => __( 'Preview message.', 'sociallane-elements' ),
|
|
630
|
+
'chat_user_avatar' => [ 'url' => $placeholder_url, 'id' => 0 ],
|
|
631
|
+
'chat_user_name' => __( 'User', 'sociallane-elements' ),
|
|
632
|
+
'chat_user_message' => __( 'Sample message.', 'sociallane-elements' ),
|
|
633
|
+
'chat_user_time' => __( 'Now', 'sociallane-elements' ),
|
|
634
|
+
],
|
|
635
|
+
'pipeline-dashboard' => [
|
|
636
|
+
'show_eyebrow' => 'yes',
|
|
637
|
+
'eyebrow' => __( 'Pipeline', 'sociallane-elements' ),
|
|
638
|
+
'show_headline' => 'yes',
|
|
639
|
+
'headline' => __( 'Pipeline dashboard', 'sociallane-elements' ),
|
|
640
|
+
],
|
|
641
|
+
'sales-dashboard' => [
|
|
642
|
+
'show_eyebrow' => 'yes',
|
|
643
|
+
'eyebrow' => __( 'Sales', 'sociallane-elements' ),
|
|
644
|
+
'show_headline' => 'yes',
|
|
645
|
+
'headline' => __( 'Sales dashboard', 'sociallane-elements' ),
|
|
646
|
+
],
|
|
647
|
+
// Newsletter (widget name "newsletter" if present)
|
|
648
|
+
'newsletter' => [
|
|
649
|
+
'headline' => __( 'Newsletter', 'sociallane-elements' ),
|
|
650
|
+
'show_description' => 'yes',
|
|
651
|
+
'description' => __( 'Subscribe for updates.', 'sociallane-elements' ),
|
|
652
|
+
'form_shortcode' => '[gravityform id="1" title="false" description="false"]',
|
|
653
|
+
],
|
|
654
|
+
];
|
|
655
|
+
|
|
656
|
+
$overrides = $by_slug[ $slug ] ?? [];
|
|
657
|
+
$defaults = array_merge( $common, $overrides );
|
|
658
|
+
|
|
659
|
+
return apply_filters( 'sociallane_elements_preview_defaults', $defaults, $slug );
|
|
660
|
+
}
|