[ald_default calltag=true]

CODE BANK

a place to bank your code

Add Icons with text over and aligned under

	<div class="w-full max-w-screen-md  text-left px-0 lg:px-6">
					<p class="text-2xl pb-4 text-white font-bold">
						OUR OFFICE AND CONCRETE PLANT
					</p>
					<p class="flex text-secondary text-lg py-4">
						<span class="mr-2 mt-1 flex-shrink-0">
						  {{ fn('icon', 'map-pin') }}
						</span>
						<span class="text-white">
						  {{ function('address_inline') }}
						</span>
					  </p>
					<p class="text-white text-lg  py-4">{{ fn('icon', 'phone', 'inline mr-1 text-secondary') }}<span
							class=" font-normal text-white"> {% filter shortcodes %}[ald_default a_tag_classes="text-white"]{%
							endfilter %}</span></p>
					<p class="text-secondary font-normal text-lg  py-4">
						{{ fn('icon', 'clock', 'inline mr-2 mt-1') }}
						{% for item in options.opening_times %}
						<span class=" text-white">
							{{ item.day }} {{ item.time }}
						</span><br>
						{% endfor %}
					</p>
					{% if not fn('is_page', 'contact-us') %} 
					<a class="my-4 w-[160px] text-white btn btn--secondary" href="{{site.url}}/contact-us/">Contact
						Us</a>{% endif %}
				</div>
Top