Files
stuart-craig-removals/resources/views/components/footer.blade.php
T
2026-04-21 16:56:21 +01:00

19 lines
662 B
PHP

<div class="w-full bg-secondary text-white py-4 sticky bottom-0">
<div class="container mx-auto flex items-center justify-between">
<p class="text-sm">&copy {{ config('app.name') }}</p>
<div class="text-center">
<span>
<i class="text-sm">Est. {{ config('site.est') }}</i>
</span>
</div>
<div class="flex space-x-4">
@foreach(config('social.links') as $link)
<a href="{{ $link['url'] }}" class="text-white" target="_blank">
<i class="{{ $link['icon'] }} text-xl"></i>
</a>
@endforeach
</div>
</div>
</div>