Bentopdf / src /partials /footer-simple.html
AUXteam's picture
Upload folder using huggingface_hub
1b756c8 verified
<footer class="mt-16 border-t-2 border-gray-700 py-8" data-simple-footer="true">
<div class="container mx-auto px-4">
<div class="flex items-center justify-between flex-wrap gap-4">
<div>
<div class="flex items-center mb-2">
<img
id="footer-logo"
src="{{baseUrl}}{{#if brandLogo}}{{brandLogo}}{{else}}images/favicon.svg{{/if}}"
alt="{{#if brandName}}{{brandName}}{{else}}Bento PDF{{/if}} Logo"
class="h-8 w-8 mr-2"
/>
<span id="footer-brand" class="text-white font-bold text-lg"
>{{#if brandName}}{{brandName}}{{else}}BentoPDF{{/if}}</span
>
</div>
<p id="footer-copyright" class="text-gray-400 text-sm">
{{#if footerText}}{{footerText}}{{else}}&copy; 2026 BentoPDF. All
rights reserved.{{/if}}
</p>
<p class="text-gray-500 text-xs mt-2">
Version <span id="app-version-simple"></span>
</p>
</div>
<div id="simple-mode-lang-switcher" class="flex-shrink-0"></div>
</div>
</div>
</footer>