Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Additional pattern categories
- Pattern preview in admin interface

## [1.0.0-beta.11] - 2025-10-28

### Changed
- **Hero with CTA pattern redesign** for modern SaaS aesthetic
- Updated background from brand blue to clean white for better versatility
- Shortened heading to "Launch your idea with confidence" (more impactful, startup-focused)
- Changed heading color from white to black (`main`) for better contrast on white background
- Redesigned subheading to be more descriptive and business-focused
- Updated subheading color to gray (`main-accent`) for proper typography hierarchy
- Reduced button border radius from default (very rounded) to `8px` for modern, subtle corners
- Changed first button color from black to indigo (`#6366f1` - Tailwind indigo-500) for modern SaaS feel
- Updated second button to use indigo text color to match first button theme
- Maintained outline style on second button with proper border styling
- All typography uses Open Sans font family for clean, professional appearance
- Pattern now follows modern startup/SaaS design trends while maintaining theme consistency

### Technical Details
- First button: Indigo background (`#6366f1`), white text, `8px` border radius
- Second button: White background, indigo text (`#6366f1`), `2px` border, `8px` border radius, outline style
- Background: White (`base`) instead of brand blue for better content versatility
- Heading: Black (`main` color) at `5xl` size for bold impact
- Subheading: Gray (`main-accent` color) at `lg` size for readability hierarchy
- Responsive layout maintained: stacks on mobile, centers on all screen sizes

## [1.0.0-beta.10] - 2025-10-28

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions callandor.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Callandor
* Plugin URI: https://github.com/imagewize/callandor
* Description: Pattern library for Sage 11 hybrid themes with Tailwind CSS support
* Version: 1.0.0-beta.10
* Version: 1.0.0-beta.11
* Requires at least: 6.6
* Requires PHP: 8.2
* Author: Imagewize
Expand All @@ -24,7 +24,7 @@
/**
* Current plugin version.
*/
define( 'CALLANDOR_VERSION', '1.0.0-beta.10' );
define( 'CALLANDOR_VERSION', '1.0.0-beta.11' );
define( 'CALLANDOR_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'CALLANDOR_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'CALLANDOR_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
Expand Down
8 changes: 4 additions & 4 deletions patterns/hero/hero-with-cta.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@

<!-- wp:buttons {"style":{"spacing":{"margin":{"top":"var:preset|spacing|40"}}},"layout":{"type":"flex","justifyContent":"center"}} -->
<div class="wp-block-buttons" style="margin-top:var(--wp--preset--spacing--40)">
<!-- wp:button {"backgroundColor":"main","textColor":"base","fontSize":"base"} -->
<div class="wp-block-button has-custom-font-size has-base-font-size"><a class="wp-block-button__link has-base-color has-main-background-color has-text-color has-background wp-element-button">' . __( 'Get Started', 'callandor' ) . '</a></div>
<!-- wp:button {"style":{"border":{"radius":"8px"},"color":{"background":"#6366f1"}},"textColor":"base","fontSize":"base"} -->
<div class="wp-block-button has-custom-font-size has-base-font-size"><a class="wp-block-button__link has-base-color has-text-color has-background wp-element-button" style="border-radius:8px;background-color:#6366f1">' . __( 'Get Started', 'callandor' ) . '</a></div>
<!-- /wp:button -->

<!-- wp:button {"backgroundColor":"base","textColor":"primary","style":{"border":{"width":"2px"}},"borderColor":"main","className":"is-style-outline","fontSize":"base"} -->
<div class="wp-block-button has-custom-font-size has-base-font-size is-style-outline"><a class="wp-block-button__link has-primary-color has-base-background-color has-text-color has-background has-border-color has-main-border-color wp-element-button" style="border-width:2px">' . __( 'Learn More', 'callandor' ) . '</a></div>
<!-- wp:button {"backgroundColor":"base","style":{"border":{"width":"2px","radius":"8px"},"color":{"text":"#6366f1"}},"borderColor":"border-dark","className":"is-style-outline","fontSize":"base"} -->
<div class="wp-block-button has-custom-font-size has-base-font-size is-style-outline"><a class="wp-block-button__link has-base-background-color has-background has-border-color has-border-dark-border-color wp-element-button" style="border-width:2px;border-radius:8px;color:#6366f1">' . __( 'Learn More', 'callandor' ) . '</a></div>
<!-- /wp:button -->
</div>
<!-- /wp:buttons -->
Expand Down
15 changes: 14 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: patterns, blocks, gutenberg, sage, tailwind, block-patterns, page-builder
Requires at least: 6.6
Tested up to: 6.7
Requires PHP: 8.2
Stable tag: 1.0.0-beta.10
Stable tag: 1.0.0-beta.11
License: MIT
License URI: https://opensource.org/licenses/MIT

Expand Down Expand Up @@ -131,6 +131,19 @@ All images are used for demonstration purposes and can be easily replaced with y

== Changelog ==

= 1.0.0-beta.11 - 2025-10-28 =
* Redesigned Hero with CTA pattern for modern SaaS aesthetic
* Changed background from brand blue to clean white for better versatility
* Updated heading to "Launch your idea with confidence" - shorter, more impactful, startup-focused
* Heading now uses black color (main) instead of white for better contrast on white background
* Redesigned subheading to be more descriptive and business-focused with gray color (main-accent)
* Reduced button border radius from default (very rounded) to 8px for modern, subtle corners
* First button now uses indigo color (#6366f1 - Tailwind indigo-500) instead of black for modern SaaS feel
* Second button uses indigo text color to match first button theme while maintaining outline style
* All typography uses Open Sans font family for clean, professional appearance
* Pattern now follows modern startup/SaaS design trends while maintaining theme consistency
* Maintained responsive layout: buttons stack on mobile, center on all screen sizes

= 1.0.0-beta.10 - 2025-10-28 =
* CRITICAL: Fixed double horizontal padding issue introduced in beta.9
* Beta.9 added explicit horizontal padding that conflicted with WordPress's automatic has-global-padding class
Expand Down