Added rest of files

This commit is contained in:
Shaun Collins
2026-03-04 16:35:15 +00:00
committed by shaun collins
parent 646041230b
commit 09c4bd02ff
160 changed files with 19001 additions and 0 deletions
@@ -0,0 +1,18 @@
<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('ace.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>