<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Home on Creatify</title><link>https://www.creatify.site/</link><description>Recent content in Home on Creatify</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Wed, 08 Jul 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://www.creatify.site/index.xml" rel="self" type="application/rss+xml"/><item><title>10 Web Development Trends</title><link>https://www.creatify.site/blog/10-web-development-trends/</link><pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/10-web-development-trends/</guid><description>&lt;p&gt;Web development is changing every year as there are new innovations and upgrades in technologies that make user experience and development better.&lt;/p&gt;</description></item><item><title>Free Shopify Sections – (100+ All Free Sections)</title><link>https://www.creatify.site/blog/free-shopify-sections/</link><pubDate>Tue, 07 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/free-shopify-sections/</guid><description>&lt;p&gt;&lt;strong&gt;Are you tired of broken CSS, z-index wars, and buggy AI-generated code on your Shopify store?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;As a &lt;a href="https://www.creatify.site/contact"&gt;Shopify Partner&lt;/a&gt; that has built over 200 stores, we&amp;rsquo;ve heard that frustration. We&amp;rsquo;ve been sharing free Shopify sections on &lt;a href="https://github.com/alibhatti23"&gt;&lt;strong&gt;GitHub&lt;/strong&gt;&lt;/a&gt; for a while now, so we built something better for you.&lt;/p&gt;</description></item><item><title>Shopify Spring 2026 Edition: The Only Updates That Matter</title><link>https://www.creatify.site/blog/shopify-spring-2026-edition/</link><pubDate>Mon, 06 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/shopify-spring-2026-edition/</guid><description>&lt;p&gt;Shopify’s Spring 2026 edition introduces groundbreaking features designed to help merchants build, scale, and sell more effectively online. In this comprehensive guide, we’ll explore the most important updates and how they can transform your ecommerce business.&lt;/p&gt;</description></item><item><title>Shopify SEO Tips for Beginners: How to Rank Your Store Higher on Google</title><link>https://www.creatify.site/blog/shopify-seo-tips-for-beginners/</link><pubDate>Sun, 05 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/shopify-seo-tips-for-beginners/</guid><description>&lt;p&gt;“AI is here… will SEO die?”&lt;/p&gt;
&lt;p&gt;If you’ve been hearing this a lot, you’re not alone. But here’s the truth: AI actually needs SEO to work.&lt;/p&gt;</description></item><item><title>How To Add Custom Button To Product Page</title><link>https://www.creatify.site/blog/how-to-add-custom-button-to-product-page/</link><pubDate>Sat, 04 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-add-custom-button-to-product-page/</guid><description>&lt;p&gt;In this step-by-step guide, I’ll show you exactly how to add a fully customizable button to any product page on Shopify. This method requires no advanced coding skills, works with any theme, and blends seamlessly with your store’s design. Let’s dive in.&lt;/p&gt;</description></item><item><title>Story Timeline In Shopify(Without app- Free)</title><link>https://www.creatify.site/blog/story-timeline-in-shopify/</link><pubDate>Fri, 03 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/story-timeline-in-shopify/</guid><description>&lt;p&gt;Create a new section file called &lt;strong&gt;story-timeline.liquid&lt;/strong&gt; and add the following code:&lt;/p&gt;
&lt;details&gt;
&lt;summary&gt;Show Code&lt;/summary&gt;
&lt;pre tabindex="0"&gt;&lt;code class="language-liquid" data-lang="liquid"&gt;
{% assign wbs_id = block.id | replace: &amp;#39;_&amp;#39;, &amp;#39;&amp;#39; | downcase %}

{% style %}
 .wbs-journey-map-{{ wbs_id }} {
 padding: 60px 20px;
 background-color: {{ section.settings.background_color }};
 overflow: hidden;
 }

 .wbs-journey-map__heading-{{ wbs_id }} {
 text-align: center;
 margin-bottom: 20px;
 color: {{ section.settings.text_color }};
 font-size: {{ section.settings.heading_size }}px;
 }

 .wbs-journey-map__subheading-{{ wbs_id }} {
 text-align: center;
 margin-bottom: 60px;
 color: {{ section.settings.subtext_color }};
 font-size: {{ section.settings.subheading_size }}px;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
 }

 .wbs-journey-map__container-{{ wbs_id }} {
 max-width: {{ section.settings.max_width }}px;
 margin: 0 auto;
 position: relative;
 }

 .wbs-journey-map__timeline-{{ wbs_id }} {
 position: relative;
 padding: 40px 0;
 }

 .wbs-journey-map__line-{{ wbs_id }} {
 position: absolute;
 top: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 4px;
 height: 100%;
 background: linear-gradient(to bottom, {{ section.settings.timeline_start_color }}, {{ section.settings.timeline_end_color }});
 border-radius: 2px;
 }

 @media screen and (max-width: 768px) {
 .wbs-journey-map__line-{{ wbs_id }} {
 left: 30px;
 }
 }

 .wbs-journey-map__stage-{{ wbs_id }} {
 position: relative;
 margin-bottom: 80px;
 opacity: 0;
 transform: translateY(30px);
 transition: all 0.6s ease;
 }

 .wbs-journey-map__stage-{{ wbs_id }}.visible {
 opacity: 1;
 transform: translateY(0);
 }

 .wbs-journey-map__stage-{{ wbs_id }}:last-child {
 margin-bottom: 0;
 }

 .wbs-journey-map__stage-content-{{ wbs_id }} {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
 }

 @media screen and (max-width: 768px) {
 .wbs-journey-map__stage-content-{{ wbs_id }} {
 grid-template-columns: 1fr;
 gap: 20px;
 padding-left: 80px;
 }
 }

 .wbs-journey-map__stage-{{ wbs_id }}:nth-child(even) .wbs-journey-map__stage-content-{{ wbs_id }} {
 direction: rtl;
 }

 .wbs-journey-map__stage-{{ wbs_id }}:nth-child(even) .wbs-journey-map__stage-text-{{ wbs_id }},
 .wbs-journey-map__stage-{{ wbs_id }}:nth-child(even) .wbs-journey-map__stage-image-{{ wbs_id }} {
 direction: ltr;
 }

 @media screen and (max-width: 768px) {
 .wbs-journey-map__stage-{{ wbs_id }}:nth-child(even) .wbs-journey-map__stage-content-{{ wbs_id }} {
 direction: ltr;
 }
 }

 .wbs-journey-map__stage-marker-{{ wbs_id }} {
 position: absolute;
 left: 50%;
 top: 50%;
 transform: translate(-50%, -50%);
 width: {{ section.settings.marker_size }}px;
 height: {{ section.settings.marker_size }}px;
 background-color: {{ section.settings.marker_color }};
 border: 4px solid {{ section.settings.background_color }};
 border-radius: 50%;
 z-index: 2;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 0 0 8px {{ section.settings.marker_ring_color }};
 }

 @media screen and (max-width: 768px) {
 .wbs-journey-map__stage-marker-{{ wbs_id }} {
 left: 30px;
 }
 }

 .wbs-journey-map__stage-marker-{{ wbs_id }} svg {
 width: 50%;
 height: 50%;
 color: {{ section.settings.marker_icon_color }};
 }

 .wbs-journey-map__stage-number-{{ wbs_id }} {
 font-size: 18px;
 font-weight: 700;
 color: {{ section.settings.marker_icon_color }};
 }

 .wbs-journey-map__stage-text-{{ wbs_id }} {
 padding: 30px;
 background-color: {{ section.settings.card_background }};
 border-radius: {{ section.settings.card_border_radius }}px;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 transition: all 0.3s ease;
 }

 .wbs-journey-map__stage-text-{{ wbs_id }}:hover {
 transform: translateY(-5px);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .wbs-journey-map__stage-label-{{ wbs_id }} {
 display: inline-block;
 padding: 6px 16px;
 background-color: {{ section.settings.label_background }};
 color: {{ section.settings.label_text_color }};
 border-radius: 20px;
 font-size: 12px;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 1px;
 margin-bottom: 15px;
 }

 .wbs-journey-map__stage-title-{{ wbs_id }} {
 font-size: 28px;
 font-weight: 700;
 margin-bottom: 15px;
 color: {{ section.settings.text_color }};
 }

 .wbs-journey-map__stage-description-{{ wbs_id }} {
 font-size: 16px;
 line-height: 1.6;
 color: {{ section.settings.subtext_color }};
 }

 .wbs-journey-map__stage-image-{{ wbs_id }} {
 position: relative;
 border-radius: {{ section.settings.image_border_radius }}px;
 overflow: hidden;
 aspect-ratio: {{ section.settings.image_aspect_ratio }};
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .wbs-journey-map__stage-image-{{ wbs_id }} img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s ease;
 }

 .wbs-journey-map__stage-image-{{ wbs_id }}:hover img {
 transform: scale(1.05);
 }

 .wbs-journey-map__stage-image-placeholder-{{ wbs_id }} {
 width: 100%;
 height: 100%;
 background-color: #f4f4f4;
 display: flex;
 align-items: center;
 justify-content: center;
 }

 .wbs-journey-map__stage-image-placeholder-{{ wbs_id }} svg {
 width: 80px;
 height: 80px;
 opacity: 0.3;
 }

 .wbs-journey-map__cta-{{ wbs_id }} {
 text-align: center;
 margin-top: 60px;
 }

 .wbs-journey-map__cta-button-{{ wbs_id }} {
 display: inline-block;
 padding: 16px 40px;
 background-color: {{ section.settings.button_color }};
 color: {{ section.settings.button_text_color }};
 text-decoration: none;
 border-radius: {{ section.settings.button_border_radius }}px;
 font-size: 18px;
 font-weight: 600;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .wbs-journey-map__cta-button-{{ wbs_id }}:hover {
 background-color: {{ section.settings.button_hover_color }};
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }

 .wbs-journey-map__empty-state-{{ wbs_id }} {
 text-align: center;
 padding: 80px 20px;
 color: {{ section.settings.subtext_color }};
 }

 .wbs-journey-map__empty-state-{{ wbs_id }} svg {
 width: 100px;
 height: 100px;
 margin-bottom: 20px;
 opacity: 0.3;
 }
{% endstyle %}

&amp;lt;wbs-journey-map-{{ wbs_id }} class=&amp;#34;wbs-journey-map-{{ wbs_id }}&amp;#34; {{ section.shopify_attributes }}&amp;gt;
 {% if section.settings.heading != blank %}
 &amp;lt;h2 class=&amp;#34;wbs-journey-map__heading-{{ wbs_id }}&amp;#34;&amp;gt;{{ section.settings.heading }}&amp;lt;/h2&amp;gt;
 {% endif %}

 {% if section.settings.subheading != blank %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__subheading-{{ wbs_id }}&amp;#34;&amp;gt;{{ section.settings.subheading }}&amp;lt;/div&amp;gt;
 {% endif %}

 &amp;lt;div class=&amp;#34;wbs-journey-map__container-{{ wbs_id }}&amp;#34;&amp;gt;
 {% assign has_stages = false %}
 {% for i in (1..6) %}
 {% assign title_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_title&amp;#39; %}
 {% if section.settings[title_key] != blank %}
 {% assign has_stages = true %}
 {% break %}
 {% endif %}
 {% endfor %}

 {% if has_stages %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__timeline-{{ wbs_id }}&amp;#34;&amp;gt;
 &amp;lt;div class=&amp;#34;wbs-journey-map__line-{{ wbs_id }}&amp;#34;&amp;gt;&amp;lt;/div&amp;gt;

 {% for i in (1..6) %}
 {% assign title_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_title&amp;#39; %}
 {% assign label_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_label&amp;#39; %}
 {% assign description_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_description&amp;#39; %}
 {% assign image_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_image&amp;#39; %}
 {% assign icon_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_icon&amp;#39; %}

 {% if section.settings[title_key] != blank %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-{{ wbs_id }}&amp;#34; data-stage&amp;gt;
 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-marker-{{ wbs_id }}&amp;#34;&amp;gt;
 {% if section.settings[icon_key] == &amp;#39;number&amp;#39; %}
 &amp;lt;span class=&amp;#34;wbs-journey-map__stage-number-{{ wbs_id }}&amp;#34;&amp;gt;{{ i }}&amp;lt;/span&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;lightbulb&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;pencil&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M15.232 5.232l3.536 3.536m-2.036-5.036a2.5 2.5 0 113.536 3.536L6.5 21.036H3v-3.572L16.732 3.732z&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;cube&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;gift&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M12 8v13m0-13V6a2 2 0 112 2h-2zm0 0V5.5A2.5 2.5 0 109.5 8H12zm-7 4h14M5 12a2 2 0 110-4h14a2 2 0 110 4M5 12v7a2 2 0 002 2h10a2 2 0 002-2v-7&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;truck&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M13 16V6a1 1 0 00-1-1H4a1 1 0 00-1 1v10a1 1 0 001 1h1m8-1a1 1 0 01-1 1H9m4-1V8a1 1 0 011-1h2.586a1 1 0 01.707.293l3.414 3.414a1 1 0 01.293.707V16a1 1 0 01-1 1h-1m-6-1a1 1 0 001 1h1M5 17a2 2 0 104 0m-4 0a2 2 0 114 0m6 0a2 2 0 104 0m-4 0a2 2 0 114 0&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;heart&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% else %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M5 13l4 4L19 7&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% endif %}
 &amp;lt;/div&amp;gt;

 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-content-{{ wbs_id }}&amp;#34;&amp;gt;
 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-text-{{ wbs_id }}&amp;#34;&amp;gt;
 {% if section.settings[label_key] != blank %}
 &amp;lt;span class=&amp;#34;wbs-journey-map__stage-label-{{ wbs_id }}&amp;#34;&amp;gt;{{ section.settings[label_key] }}&amp;lt;/span&amp;gt;
 {% endif %}
 &amp;lt;h3 class=&amp;#34;wbs-journey-map__stage-title-{{ wbs_id }}&amp;#34;&amp;gt;{{ section.settings[title_key] }}&amp;lt;/h3&amp;gt;
 {% if section.settings[description_key] != blank %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-description-{{ wbs_id }}&amp;#34;&amp;gt;{{ section.settings[description_key] }}&amp;lt;/div&amp;gt;
 {% endif %}
 &amp;lt;/div&amp;gt;

 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-image-{{ wbs_id }}&amp;#34;&amp;gt;
 {% if section.settings[image_key] != blank %}
 &amp;lt;img 
 src=&amp;#34;{{ section.settings[image_key] | image_url: width: 800 }}&amp;#34; 
 alt=&amp;#34;{{ section.settings[image_key].alt | escape }}&amp;#34;
 loading=&amp;#34;lazy&amp;#34;
 width=&amp;#34;{{ section.settings[image_key].width }}&amp;#34;
 height=&amp;#34;{{ section.settings[image_key].height }}&amp;#34;
 &amp;gt;
 {% else %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-image-placeholder-{{ wbs_id }}&amp;#34;&amp;gt;
 {{ &amp;#39;image&amp;#39; | placeholder_svg_tag }}
 &amp;lt;/div&amp;gt;
 {% endif %}
 &amp;lt;/div&amp;gt;
 &amp;lt;/div&amp;gt;
 &amp;lt;/div&amp;gt;
 {% endif %}
 {% endfor %}
 &amp;lt;/div&amp;gt;

 {% if section.settings.show_cta and section.settings.cta_text != blank %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__cta-{{ wbs_id }}&amp;#34;&amp;gt;
 &amp;lt;a href=&amp;#34;{{ section.settings.cta_link }}&amp;#34; class=&amp;#34;wbs-journey-map__cta-button-{{ wbs_id }}&amp;#34;&amp;gt;
 {{ section.settings.cta_text }}
 &amp;lt;/a&amp;gt;
 &amp;lt;/div&amp;gt;
 {% endif %}
 {% else %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__empty-state-{{ wbs_id }}&amp;#34;&amp;gt;
 {{ &amp;#39;image&amp;#39; | placeholder_svg_tag }}
 &amp;lt;p&amp;gt;{{ section.settings.empty_state_text }}&amp;lt;/p&amp;gt;
 &amp;lt;/div&amp;gt;
 {% endif %}
 &amp;lt;/div&amp;gt;
&amp;lt;/wbs-journey-map-{{ wbs_id }}&amp;gt;

&amp;lt;script&amp;gt;
 (function() {
 class JourneyMap{{ wbs_id }} extends HTMLElement {
 constructor() {
 super();
 this.stages = this.querySelectorAll(&amp;#39;[data-stage]&amp;#39;);
 this.observerOptions = {
 threshold: 0.2,
 rootMargin: &amp;#39;0px 0px -100px 0px&amp;#39;
 };
 }

 connectedCallback() {
 this.setupIntersectionObserver();
 }

 setupIntersectionObserver() {
 const observer = new IntersectionObserver((entries) =&amp;gt; {
 entries.forEach((entry, index) =&amp;gt; {
 if (entry.isIntersecting) {
 setTimeout(() =&amp;gt; {
 entry.target.classList.add(&amp;#39;visible&amp;#39;);
 }, index * {{ section.settings.animation_delay }});
 observer.unobserve(entry.target);
 }
 });
 }, this.observerOptions);

 this.stages.forEach(stage =&amp;gt; {
 observer.observe(stage);
 });
 }
 }

 customElements.define(&amp;#39;wbs-journey-map-{{ wbs_id }}&amp;#39;, JourneyMap{{ wbs_id }});
 })();
&amp;lt;/script&amp;gt;

{% schema %}
{
 &amp;#34;name&amp;#34;: &amp;#34;Story Timeline&amp;#34;,
 &amp;#34;settings&amp;#34;: [
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Content&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;heading&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Heading&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Our Product Journey&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;subheading&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Subheading&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Discover the story behind every product we create&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;empty_state_text&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Empty state text&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Add stages to create your product journey&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 1&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_1_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 1&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_1_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Idea&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_1_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Every great product starts with a spark of inspiration and a vision to create something meaningful.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_1_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_1_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;lightbulb&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 2&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_2_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 2&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_2_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Design&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_2_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Our talented designers bring ideas to life with careful attention to detail and aesthetics.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_2_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_2_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;pencil&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 3&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_3_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 3&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_3_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Production&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_3_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Quality craftsmanship meets modern manufacturing to create products that last.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_3_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_3_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;cube&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 4&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_4_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 4&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_4_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Packaging&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_4_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Thoughtfully packaged with sustainability in mind, ready to delight from the moment you receive it.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_4_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_4_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;gift&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 5&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_5_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 5&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_5_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Delivery&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_5_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Fast and reliable shipping ensures your product arrives safely at your doorstep.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_5_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_5_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;truck&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 6&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_6_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 6&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_6_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;You&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_6_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;The final and most important step - bringing joy and value to your life every day.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_6_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_6_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;heart&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Call to action&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;checkbox&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;show_cta&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Show button&amp;#34;,
 &amp;#34;default&amp;#34;: true
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;cta_text&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Button text&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Explore Our Products&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;url&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;cta_link&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Button link&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Layout&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;max_width&amp;#34;,
 &amp;#34;min&amp;#34;: 800,
 &amp;#34;max&amp;#34;: 1400,
 &amp;#34;step&amp;#34;: 50,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Maximum width&amp;#34;,
 &amp;#34;default&amp;#34;: 1200
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;heading_size&amp;#34;,
 &amp;#34;min&amp;#34;: 24,
 &amp;#34;max&amp;#34;: 56,
 &amp;#34;step&amp;#34;: 2,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Heading size&amp;#34;,
 &amp;#34;default&amp;#34;: 40
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;subheading_size&amp;#34;,
 &amp;#34;min&amp;#34;: 14,
 &amp;#34;max&amp;#34;: 24,
 &amp;#34;step&amp;#34;: 1,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Subheading size&amp;#34;,
 &amp;#34;default&amp;#34;: 18
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;marker_size&amp;#34;,
 &amp;#34;min&amp;#34;: 40,
 &amp;#34;max&amp;#34;: 80,
 &amp;#34;step&amp;#34;: 5,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Marker size&amp;#34;,
 &amp;#34;default&amp;#34;: 60
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;card_border_radius&amp;#34;,
 &amp;#34;min&amp;#34;: 0,
 &amp;#34;max&amp;#34;: 40,
 &amp;#34;step&amp;#34;: 2,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Card border radius&amp;#34;,
 &amp;#34;default&amp;#34;: 16
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;image_border_radius&amp;#34;,
 &amp;#34;min&amp;#34;: 0,
 &amp;#34;max&amp;#34;: 40,
 &amp;#34;step&amp;#34;: 2,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image border radius&amp;#34;,
 &amp;#34;default&amp;#34;: 12
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;image_aspect_ratio&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image aspect ratio&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;1 / 1&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Square (1:1)&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;4 / 3&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Landscape (4:3)&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;16 / 9&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Wide (16:9)&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;3 / 4&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Portrait (3:4)&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;4 / 3&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Animation&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;animation_delay&amp;#34;,
 &amp;#34;min&amp;#34;: 0,
 &amp;#34;max&amp;#34;: 500,
 &amp;#34;step&amp;#34;: 50,
 &amp;#34;unit&amp;#34;: &amp;#34;ms&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Delay between stages&amp;#34;,
 &amp;#34;default&amp;#34;: 150
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Colors&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;background_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#ffffff&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;card_background&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Card background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#ffffff&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;text_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Text&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#000000&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;subtext_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Subtext&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#666666&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;timeline_start_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Timeline start&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#a42325&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;timeline_end_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Timeline end&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#780406&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;marker_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Marker background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#a42325&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;marker_icon_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Marker icon&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#ffffff&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;marker_ring_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Marker ring&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#f9e6e6&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;label_background&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#f1f1f1&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;label_text_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label text&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#666666&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Button&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;button_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#a42325&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;button_text_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Text&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#ffffff&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;button_hover_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Hover background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#780406&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;button_border_radius&amp;#34;,
 &amp;#34;min&amp;#34;: 0,
 &amp;#34;max&amp;#34;: 40,
 &amp;#34;step&amp;#34;: 2,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Border radius&amp;#34;,
 &amp;#34;default&amp;#34;: 8
 }
 ],
 &amp;#34;presets&amp;#34;: [
 {
 &amp;#34;name&amp;#34;: &amp;#34;Story Timeline&amp;#34;
 }
 ]
}
{% endschema %}
&lt;/code&gt;&lt;/pre&gt;&lt;/details&gt;
&lt;h2 id="story-timeline-shopify-section--build-a-powerful-brand-journey-experience"&gt;Story Timeline Shopify Section – Build a Powerful Brand Journey Experience&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Story Timeline Shopify Section&lt;/strong&gt; is an effective way to visually communicate your brand’s journey, milestones, and values. Instead of presenting plain text on your About Us page, a timeline section allows you to tell your story step by step in a clean, engaging, and interactive format. This approach helps customers connect emotionally with your brand and builds long-term trust.&lt;/p&gt;</description></item><item><title>HTML5 Mobile Meta Tags</title><link>https://www.creatify.site/blog/html5-mobile-meta-tags/</link><pubDate>Thu, 02 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/html5-mobile-meta-tags/</guid><description>&lt;h2 id="html5-mobile-meta-tags"&gt;HTML5 Mobile Meta Tags&lt;/h2&gt;
&lt;p&gt;There are several &lt;meta&gt; tags that are specifically geared to mobile devices. Among them are &lt;meta&gt; tags that tell browsers to take up the entire view-port and disable scaling, and to change the status bar color, which we will cover in the following section.&lt;/p&gt;</description></item><item><title>HTML5-Intro</title><link>https://www.creatify.site/blog/html5-intro/</link><pubDate>Wed, 01 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/html5-intro/</guid><description>&lt;p&gt;&lt;a href="https://html5up.net/"&gt;HTML5&lt;/a&gt; has long since become the standard markup language for web development, and it&amp;rsquo;s the foundation nearly every modern site is still built on today. Despite that, plenty of developers never fully learn its properties beyond the basics. This article covers the key features worth knowing to build a solid foundation.&lt;/p&gt;</description></item><item><title>How To Embed ANY Social Media Content in Shopify (800+ Platforms Supported)</title><link>https://www.creatify.site/blog/how-to-embed-social-media-content-in-shopify/</link><pubDate>Tue, 30 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-embed-social-media-content-in-shopify/</guid><description>&lt;p&gt;Tired of boring product pages? What if you could add Instagram reels, YouTube demos, or customer reviews with &lt;strong&gt;just a copy and paste?&lt;/strong&gt; No coding. No complex widgets. Just pure, simple magic.&lt;/p&gt;</description></item><item><title>How To Show Sale Discount Percentage on Shopify</title><link>https://www.creatify.site/blog/how-to-show-sale-discount-percentage-on-shopify/</link><pubDate>Mon, 29 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-show-sale-discount-percentage-on-shopify/</guid><description>&lt;h2 id="step-1-replace-the-code-in-_product-card-galleryliquid"&gt;Step 1: Replace the code in _product-card-gallery.liquid&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Replace the following code in _product-card-gallery.liquid&lt;/strong&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;{%- if product.available == false or product.compare_at_price &amp;gt; product.price and product.available -%}
 &amp;lt;div
 class=&amp;quot;
 product-badges__badge product-badges__badge--rectangle
 {% if product.available == false %} color-{{ settings.badge_sold_out_color_scheme }}{% elsif product.compare_at_price &amp;gt; product.price %} color-{{ settings.badge_sale_color_scheme }}{% endif %}
 &amp;quot;
 &amp;gt;
 {%- if product.available == false -%}
 {{ 'content.product_badge_sold_out' | t }}
 {%- elsif product.compare_at_price &amp;gt; product.price -%}
 {{ 'content.product_badge_sale' | t }}
 {%- endif -%}
 &amp;lt;/div&amp;gt;
{%- endif -%}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;With the following code&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Shopify Agentic Storefront – RANK Your Shopify Store in ChatGPT</title><link>https://www.creatify.site/blog/rank-your-shopify-store-in-chatgpt/</link><pubDate>Sun, 28 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/rank-your-shopify-store-in-chatgpt/</guid><description>&lt;p&gt;Your Shopify store is missing out on a massive opportunity. While everyone’s focused on Google search rankings, AI models like ChatGPT, Google Gemini, and Microsoft Copilot are becoming the new discovery channels. And here’s the thing: most store owners have no idea how to optimize for them.&lt;/p&gt;</description></item><item><title>How To Add a Price Range Slider in Shopify (Free Code)</title><link>https://www.creatify.site/blog/how-to-add-price-range-slider-in-shopify/</link><pubDate>Sat, 27 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-add-price-range-slider-in-shopify/</guid><description>&lt;p&gt;In today’s e-commerce world, providing a seamless shopping experience is key to increasing sales. Shopify’s &lt;strong&gt;default filters&lt;/strong&gt; are great, but sometimes you want a more &lt;strong&gt;interactive and visually&lt;/strong&gt; appealing way for customers to filter products. In this tutorial, we&amp;rsquo;ll show you &lt;strong&gt;how to add a custom Price Range Slider Filter to your Shopify theme for free&lt;/strong&gt;.&lt;/p&gt;</description></item><item><title>How To Give Shopify Store Access Safely</title><link>https://www.creatify.site/blog/how-to-give-shopify-collaborative-access/</link><pubDate>Fri, 26 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-give-shopify-collaborative-access/</guid><description>&lt;p&gt;Running a Shopify store often means you need help. Whether you’re hiring a developer for custom theme work, a contractor to add products, or a team member to manage orders you need a safe way to grant access.&lt;/p&gt;</description></item><item><title>How To Setup Abandoned Cart In Shopify</title><link>https://www.creatify.site/blog/how-to-setup-abandoned-cart-in-shopify/</link><pubDate>Thu, 25 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-setup-abandoned-cart-in-shopify/</guid><description>&lt;p&gt;Did you know that out of every &lt;strong&gt;10 people who visit&lt;/strong&gt; an online store, 7 of them leave without finishing their purchase? That is a massive 70% of your potential revenue walking out the door!&lt;/p&gt;</description></item><item><title>How To Use Claude Connector For Shopify</title><link>https://www.creatify.site/blog/how-to-use-claude-connector-for-shopify/</link><pubDate>Wed, 24 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-use-claude-connector-for-shopify/</guid><description>&lt;p&gt;Shopify is evolving fast and now, connecting your store with AI tools like Claude is easier than ever.&lt;/p&gt;
&lt;p&gt;Previously, this required custom apps and technical setup. But now, you can connect your Shopify store and start chatting with your data in just a few clicks.&lt;/p&gt;</description></item><item><title>Google May 2026 Core Update Explained: Key SEO Changes and Recovery Tips</title><link>https://www.creatify.site/blog/google-may-2026-core-update/</link><pubDate>Tue, 23 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/google-may-2026-core-update/</guid><description>&lt;p&gt;Thursday, May 21, 2026, it began – on June 2, 2026, it was over. Google marked the May 2026 Core Update as officially complete after roughly twelve days. The entry in the Google Search Status Dashboard is unambiguous: “The rollout was complete as of June 2, 2026.” The second confirmed broad core update of 2026 is done – and the phase in which reacting would only have produced noise is over.&lt;/p&gt;</description></item><item><title>How Build a No-Code Political Tweet Analyzer with N8N [Free Workflow]</title><link>https://www.creatify.site/blog/no-code-tweet-analyzer-with-n8n/</link><pubDate>Mon, 22 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/no-code-tweet-analyzer-with-n8n/</guid><description>&lt;p&gt;Tired of manually reading hundreds of Twitter comments to gauge public opinion? Whether you’re a marketer analyzing brand sentiment, a politician understanding your audience, or a researcher studying social trends, this process is tedious and time-consuming.&lt;/p&gt;</description></item><item><title>Why SEO Matters in Today’s World</title><link>https://www.creatify.site/blog/why-seo-matters/</link><pubDate>Sun, 21 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/why-seo-matters/</guid><description>&lt;h2 id="introduction-why-seo-matters-in-todays-world"&gt;Introduction: Why SEO Matters in Today’s World&lt;/h2&gt;
&lt;p&gt;Imagine having a &lt;strong&gt;stunning website&lt;/strong&gt; or &lt;strong&gt;online store&lt;/strong&gt;, but no one can find it. Sounds frustrating, right? That’s where SEO Services come in. Search Engine Optimization (SEO) is the key to getting your business noticed on Google, Bing, and other search engines. Whether you’re a small business owner, an E-commerce seller, or a service provider, ranking higher on search results can bring you more customers and skyrocket your sales. At Creatify, our expert SEO Services help you climb the ranks, attract the right audience, and grow your business, all without breaking the bank. Let’s explore how we can make this happen for you!
&lt;img src="https://www.creatify.site/blog-assets/SEO/img-8.webp" alt="SEO Result"&gt;&lt;/p&gt;</description></item><item><title>What Is SEO and How Does It Work?</title><link>https://www.creatify.site/blog/what-is-seo-and-how-does-it-work/</link><pubDate>Sat, 20 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/what-is-seo-and-how-does-it-work/</guid><description>&lt;ul&gt;
&lt;li&gt;If you’ve ever wondered why some websites appear at the top of &lt;strong&gt;Google&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;While others stay buried on page 10, the answer is simple: &lt;strong&gt;SEO&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Search Engine Optimization (SEO) is one of the most powerful digital marketing strategies used today, helping businesses improve their online visibility, attract the right audience, and generate long-term organic traffic.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="what-is-seo"&gt;What Is SEO?&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Definition&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;SEO (Search Engine Optimization)&lt;/strong&gt; is the process of improving your website so it &lt;strong&gt;ranks higher&lt;/strong&gt; on search engines like Google, Bing, and Yahoo. When your website appears higher in search results, more people can find your business, visit your website, and convert into customers.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;In simple terms:&lt;/strong&gt;
&lt;strong&gt;Better SEO = Higher Ranking = More Traffic = More Sales&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ul&gt;
&lt;li&gt;Unlike &lt;strong&gt;paid ads&lt;/strong&gt;, SEO focuses on &lt;strong&gt;organic traffic&lt;/strong&gt;, meaning you don’t pay Google for clicks. Your &lt;strong&gt;website earns visibility&lt;/strong&gt; by being relevant, trustworthy, and user-friendly.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="why-is-seo-important-for-businesses"&gt;Why Is SEO Important for Businesses?&lt;/h2&gt;
&lt;p&gt;Whether you run a small business or a large corporation, SEO brings huge benefits:&lt;/p&gt;</description></item><item><title>Digital Strategy</title><link>https://www.creatify.site/services/digital-strategy/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.creatify.site/services/digital-strategy/</guid><description>&lt;p&gt;A new website, an SEO push, and a round of Facebook ads can all be individually &amp;ldquo;fine&amp;rdquo; and still not add up to much if they&amp;rsquo;re not pointed at the same goal. Digital strategy is the layer that connects them, deciding what to prioritize, in what order, and how to measure whether it&amp;rsquo;s actually working.&lt;/p&gt;</description></item><item><title>Graphic Designing</title><link>https://www.creatify.site/services/graphic-designing/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.creatify.site/services/graphic-designing/</guid><description>&lt;p&gt;The way your business looks; your logo, your social posts, your ad creative, shapes whether people trust you before they&amp;rsquo;ve read a single word. Inconsistent or amateur visuals undercut good products and good marketing.&lt;/p&gt;</description></item><item><title>Leave a Review</title><link>https://www.creatify.site/leave-a-review/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.creatify.site/leave-a-review/</guid><description/></item><item><title>Privacy Policy</title><link>https://www.creatify.site/privacy-policy/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.creatify.site/privacy-policy/</guid><description>&lt;p&gt;This policy explains what information Creatify collects when you visit this website or work with us, and how that information is used.&lt;/p&gt;</description></item><item><title>Search Engine Optimization</title><link>https://www.creatify.site/services/seo/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.creatify.site/services/seo/</guid><description>&lt;p&gt;&lt;strong&gt;SEO isn&amp;rsquo;t a switch you flip once.&lt;/strong&gt; It&amp;rsquo;s the compounding result of a site that&amp;rsquo;s technically sound, content that actually answers what people are searching for, and a few fundamentals done consistently over time.&lt;/p&gt;</description></item><item><title>Shopify Development</title><link>https://www.creatify.site/services/shopify-development/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.creatify.site/services/shopify-development/</guid><description>&lt;p&gt;&lt;strong&gt;Shopify makes it easy to launch a store.&lt;/strong&gt; It doesn&amp;rsquo;t make it easy to launch a store that actually converts, loads fast, and doesn&amp;rsquo;t fight you every time you want to change something. That&amp;rsquo;s where we come in.&lt;/p&gt;</description></item><item><title>Social Media Marketing</title><link>https://www.creatify.site/services/social-media-marketing/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.creatify.site/services/social-media-marketing/</guid><description>&lt;p&gt;Paid ads can grow a business fast, or burn through a budget just as fast if the targeting, creative, and tracking are not set up properly. We manage campaigns across the platforms that actually matter for your business: Facebook and Instagram for reaching new audiences, TikTok for attention and viral potential, and Google for capturing people already searching for what you sell.&lt;/p&gt;</description></item><item><title>Terms of Service</title><link>https://www.creatify.site/terms-of-service/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.creatify.site/terms-of-service/</guid><description>&lt;p&gt;These terms apply when you use this website, book a call with us, or engage Creatify for a project. By doing any of these, you agree to the terms below.&lt;/p&gt;</description></item><item><title>Video Editing</title><link>https://www.creatify.site/services/video-editing/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.creatify.site/services/video-editing/</guid><description>&lt;p&gt;Video gets attention that static images and text usually don&amp;rsquo;t, but only if it&amp;rsquo;s actually well edited. Shaky pacing, bad captions, or a video that doesn&amp;rsquo;t hook viewers in the first three seconds gets scrolled past.&lt;/p&gt;</description></item><item><title>Web Development</title><link>https://www.creatify.site/services/web-development/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.creatify.site/services/web-development/</guid><description>&lt;p&gt;Your website is usually the first real interaction a potential customer has with your business. If it&amp;rsquo;s slow, dated, or hard to navigate on a phone, you&amp;rsquo;re losing customers before they even see what you offer.&lt;/p&gt;</description></item><item><title>WordPress Development</title><link>https://www.creatify.site/services/wordpress-development/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.creatify.site/services/wordpress-development/</guid><description>&lt;p&gt;WordPress powers a huge share of the web for a reason. It&amp;rsquo;s flexible and your team can update content without calling a developer every time. The problem is most WordPress sites get built with a pile of plugins and page-builder bloat that slows everything down.&lt;/p&gt;</description></item></channel></rss>