diff --git a/assets/admin/icons/stacked_images.svg b/assets/admin/icons/stacked_images.svg
new file mode 100644
index 0000000..2deacc5
--- /dev/null
+++ b/assets/admin/icons/stacked_images.svg
@@ -0,0 +1,5 @@
+
diff --git a/includes/Admin/Settings.php b/includes/Admin/Settings.php
index 961c609..e52f0a5 100644
--- a/includes/Admin/Settings.php
+++ b/includes/Admin/Settings.php
@@ -774,6 +774,7 @@ private function section_active_blocks_callback() {
UI::show_info_card( 'insert_post', __( 'Insert Post Block', 'frontblocks' ), __( 'Display content from other posts, pages or custom post types', 'frontblocks' ) );
UI::show_info_card( 'counter', __( 'Counter Block', 'frontblocks' ), __( 'Display animated counters with start and end values', 'frontblocks' ) );
UI::show_info_card( 'reading_time', __( 'Reading Time Block', 'frontblocks' ), __( 'Show estimated reading time for posts', 'frontblocks' ) );
+ UI::show_info_card( 'stacked_images', __( 'Stacked Images Block', 'frontblocks' ), __( 'Display images with animated stacking effect from different directions', 'frontblocks' ) );
UI::show_info_card( 'product_categories', __( 'Product Categories Block', 'frontblocks' ), __( 'Display WooCommerce product categories', 'frontblocks' ) );
UI::show_info_card( 'headline_marquee', __( 'Headline Marquee', 'frontblocks' ), __( 'Infinite scrolling marquee effect for headline/text blocks with customizable speed', 'frontblocks' ) );
?>
diff --git a/includes/Admin/UI.php b/includes/Admin/UI.php
index eb4d733..f14910d 100644
--- a/includes/Admin/UI.php
+++ b/includes/Admin/UI.php
@@ -73,6 +73,9 @@ public static function get_feature_icon( $icon_slug ) {
// Reading time icon.
$reading_time_icon = '';
+ // Stacked images icon.
+ $stacked_images_icon = '';
+
// Product categories icon.
$product_categories_icon = '';
@@ -90,6 +93,7 @@ public static function get_feature_icon( $icon_slug ) {
'insert_post' => $insert_post_icon,
'counter' => $counter_icon,
'reading_time' => $reading_time_icon,
+ 'stacked_images' => $stacked_images_icon,
'product_categories' => $product_categories_icon,
'headline_marquee' => $headline_marquee_icon,
);