This commit is contained in:
austnv
2026-05-24 00:34:49 +03:00
commit d13b21d5e3
24 changed files with 3074 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<template>
<footer id="footer" class="border-t border-gray-800 px-6 py-12 md:px-12">
<div class="max-w-7xl mx-auto flex flex-col md:flex-row justify-between items-center gap-3">
<div class="flex items-center gap-3">
<img src="//sub.uvpn.shop/static/turbo.png" alt="uVPN logo" class="size-8" />
<span class="text-lg font-bold">uVPN</span>
</div>
<div class="flex gap-6 text-gray-400 text-sm">
<a href="#" class="hover:text-white transition">Политика конфиденциальности</a>
<a href="#" class="hover:text-white transition">Условия использования</a>
<a href="#" class="hover:text-white transition">Поддержка</a>
</div>
<p class="text-gray-500 text-sm">
© 2026 uVPN. Все права защищены.
</p>
</div>
</footer>
</template>