mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
67 lines
3.3 KiB
HTML
67 lines
3.3 KiB
HTML
<footer class="bg-slate-900 mt-12 pt-12 pb-8 text-white">
|
|
<div class="container max-w-7xl mx-auto px-4 lg:px-6">
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-12">
|
|
<!-- About Section -->
|
|
<div>
|
|
<h3 class="text-lg font-semibold mb-4">
|
|
PHPFlasher
|
|
</h3>
|
|
<p class="text-slate-400 mb-6 text-sm leading-relaxed">
|
|
A powerful & easy-to-use package for adding flash messages to Laravel or Symfony projects.
|
|
Provides feedback to users, improves engagement & enhances user experience.
|
|
</p>
|
|
<div class="flex space-x-4">
|
|
<a href="https://github.com/php-flasher/php-flasher" class="text-slate-400 hover:text-white transition-colors">
|
|
<i class="fa-brands fa-github text-lg"></i>
|
|
</a>
|
|
<a href="https://twitter.com/phpflasher" class="text-slate-400 hover:text-white transition-colors">
|
|
<i class="fa-brands fa-twitter text-lg"></i>
|
|
</a>
|
|
<a href="https://www.linkedin.com/in/yoeunes/" class="text-slate-400 hover:text-white transition-colors">
|
|
<i class="fa-brands fa-linkedin text-lg"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Quick Links -->
|
|
<div>
|
|
<h3 class="text-lg font-semibold mb-4">Documentation</h3>
|
|
<ul class="space-y-2 text-sm text-slate-400">
|
|
<li>
|
|
<a href="/" class="text-slate-400 hover:text-white transition-colors">Introduction</a>
|
|
</li>
|
|
<li>
|
|
<a href="/laravel/" class="text-slate-400 hover:text-white transition-colors">Laravel Integration</a>
|
|
</li>
|
|
<li>
|
|
<a href="/symfony/" class="text-slate-400 hover:text-white transition-colors">Symfony Integration</a>
|
|
</li>
|
|
<li>
|
|
<a href="/livewire/" class="text-slate-400 hover:text-white transition-colors">Livewire Integration</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Author -->
|
|
<div>
|
|
<h3 class="text-lg font-semibold mb-4">Author</h3>
|
|
<div class="flex items-center">
|
|
<img src="/static/images/younes-ennaji.jpeg" alt="Younes ENNAJI"
|
|
class="h-12 w-12 rounded-full mr-3">
|
|
<div>
|
|
<h4 class="font-medium text-white">Younes ENNAJI</h4>
|
|
<a href="https://www.linkedin.com/in/yoeunes/"
|
|
class="text-slate-400 hover:text-white text-sm inline-flex items-center gap-1 mt-1 transition-colors">
|
|
<i class="fa-brands fa-linkedin"></i> LinkedIn
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-12 pt-6 border-t border-slate-800 text-center text-slate-500 text-sm">
|
|
<p>© {{ 'now' | date: "%Y" }} PHPFlasher. Released under the MIT License.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|