diff --git a/views/templates/hook/prettyblocks/prettyblock_llm_links.tpl b/views/templates/hook/prettyblocks/prettyblock_llm_links.tpl
new file mode 100644
index 0000000..43dd9f6
--- /dev/null
+++ b/views/templates/hook/prettyblocks/prettyblock_llm_links.tpl
@@ -0,0 +1,65 @@
+{*
+ * 2019-2025 Team Ever
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Academic Free License (AFL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/afl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@prestashop.com so we can send you a copy immediately.
+ *
+ * @author Team Ever
+ * @copyright 2019-2025 Team Ever
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
+*}
+{include file='module:everblock/views/templates/hook/prettyblocks/_partials/visibility_class.tpl'}
+
+{assign var='page_title' value=$meta_title|default:$shop.name|default:''}
+{assign var='page_url' value=$urls.current_url|default:''}
+
+
+ {if $block.settings.default.force_full_width}
+
+ {elseif $block.settings.default.container}
+
+ {/if}
+
+ {if isset($block.settings.heading_text) && $block.settings.heading_text}
+
{$block.settings.heading_text|escape:'htmlall':'UTF-8'}
+ {/if}
+
+ {if isset($block.states) && $block.states}
+
+ {foreach from=$block.states item=state key=key}
+ {assign var='link_label' value=$state.label|default:''}
+ {assign var='base_url' value=$state.base_url|default:''}
+ {assign var='prompt_template' value=$state.prompt_template|default:''}
+ {assign var='prompt' value=$prompt_template|replace:'{{title}}':$page_title|replace:'{{url}}':$page_url}
+ {assign var='prompt_encoded' value=$prompt|escape:'url'}
+ {assign var='final_url' value=$base_url|cat:$prompt_encoded}
+ {assign var='icon_url' value=''}
+ {if (is_array($state.icon) || is_object($state.icon)) && isset($state.icon.url)}
+ {assign var='icon_url' value=$state.icon.url}
+ {/if}
+ {if $link_label && $base_url}
+
+ {/if}
+ {/foreach}
+
+ {/if}
+
+ {if $block.settings.default.force_full_width || $block.settings.default.container}
+
+ {/if}
+
+