templates/galilea/import/components/footer.twig line 1
<footer class="sticky bottom-0 left-0 text-sm text-white bg-brand-50">
<div class="pt-20 pb-12">
<div class="container">
<div class="flex relative flex-col gap-y-8 lg:flex-row">
<div class="text-3xl text-center lg:text-5xl lg:text-left leading-[1.1] basis-2/5 text-balance">
{{ footer_title }}
</div>
<nav class="flex gap-10 justify-between md:gap-20 md:mx-auto lg:grid lg:grid-cols-3 lg:gap-16 lg:mr-0 lg:ml-auto">
{% for group in footer_nav %}
<div class="flex flex-col gap-6 lg:flex-row">
<div class="font-medium tracking-wide leading-4 uppercase text-[0.625rem] text-white/60">
{{ group.title }}
</div>
<div class="flex flex-col gap-5 leading-none">
{% for item in group.items %}
<a href="{{item.url}}" class="transition-all hover:text-secondary-50" {{ item.target ? ('target="' ~ item.target ~ '" rel="noopener noreferrer"')|raw }}>{{ item.title }}</a>
{% endfor %}
</div>
</div>
{% endfor %}
</nav>
</div>
<div class="relative aspect-square mx-auto w-1/4 -mt-[5%] pointer-events-none -z-10">
<canvas class="size-full" x-rive.nopause="{{ footer_animation }}"></canvas>
</div>
<div class="flex flex-col gap-y-3 gap-x-8 items-center pt-12 whitespace-nowrap lg:grid grid-cols-[1fr_min-content_1fr]">
<div>
{{ footer_copyright|raw }}
</div>
<nav class="flex gap-10 justify-center items-center lg:justify-left">
{% for item in social %}
<a href="{{item.url}}" class="flex gap-1 items-center transition-all hover:text-secondary-50" {{ item.target ? ('target="' ~ item.target ~ '" rel="noopener noreferrer"')|raw }}>
{{ item.title }}
{% if item.target %}
<span class="inline-block relative w-[0.6em] -top-[0.1em]">
{% include (baseIncludePath ? baseIncludePath : '') ~ 'svgs/external.twig' %}
</span>
{% endif %}
</a>
{% endfor %}
</nav>
<nav class="flex gap-6 justify-center items-center lg:justify-end">
{% for item in footer_subnav %}
<a href="{{item.url}}" class="flex gap-1 items-center transition-all hover:text-secondary-50" {{ item.target ? ('target="' ~ item.target ~ '" rel="noopener noreferrer"')|raw }}>
{{ item.title }}
{% if item.target %}
<span class="inline-block relative w-[0.6em] -top-[0.1em]">
{% include (baseIncludePath ? baseIncludePath : '') ~ 'svgs/external.twig' %}
</span>
{% endif %}
</a>
{% endfor %}
<a href="https://newnow.cool" class="flex gap-1 items-center transition-all hover:text-secondary-50" target="_blank" rel="noopener noreferrer">
Site by New Now
</a>
</nav>
</div>
</div>
</div>
</footer>