37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<footer class="border-t mt-10">
|
|
<div class="container mx-auto flex flex-col items-center justify-center pt-10">
|
|
<div class="flex justify-center pb-8">
|
|
<img class="w-12 h-12" src="/images/icon.png" />
|
|
</div>
|
|
<ul class="flex flex-wrap font-medium text-gray-700 pb-8 justify-center max-w-xl">
|
|
<li>
|
|
<a href="/about" class="hover:underline">About</a>
|
|
</li>
|
|
<li class="pb-4 md:pb-2 px-4 md:px-2">
|
|
<a href="/privacy" class="hover:underline">Privacy</a>
|
|
</li>
|
|
<li class="pb-4 md:pb-2 px-4 md:px-2">
|
|
<a href="/concept" class="hover:underline">Concept</a>
|
|
</li>
|
|
|
|
</ul>
|
|
<div class="flex flex-row w-2/3 lg:w-1/3">
|
|
<div class="flex-col w-full">
|
|
<div class="flex w-full">
|
|
<input class="bg-gray-100 h-10 px-2 rounded flex-1" type="email" name="email"
|
|
placeholder="Subscribe for News Letters">
|
|
<button
|
|
class="ml-4 text-white h-10 flex items-center justify-center px-4 bg-main-link rounded shadow font-medium">
|
|
Subscribe
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="py-8 flex">
|
|
|
|
<p class="text-gray-600">Powered by Baraveli.</p>
|
|
|
|
</div>
|
|
</div>
|
|
</footer> |