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
+26
View File
@@ -0,0 +1,26 @@
<template>
<section id="hero" class="px-6 py-16 md:py-24 md:px-12 max-w-7xl mx-auto grid md:grid-cols-2 gap-12 items-center">
<div>
<h1 class="text-4xl md:text-5xl font-extrabold leading-tight mb-6">
Безопасный и быстрый VPN <br /> от <span class="text-blue-500">uVPN</span>
</h1>
<p class="text-gray-400 text-lg mb-8 max-w-md">
Защитите свои данные, обходите блокировки и оставайтесь анонимными в сети с нашим современным VPN-сервисом на базе Xray.
</p>
<button class="bg-blue-600 hover:bg-blue-700 transition px-8 py-4 rounded-xl font-bold text-lg shadow-lg shadow-blue-600/30 flex items-center gap-2">
<Zap class="w-5 h-5" /> Начать бесплатно
</button>
<p class="text-gray-500 text-sm mt-4">30-дневная гарантия возврата денег</p>
</div>
<div class="flex justify-center">
<img
src="/public/images/earth.png"
alt="VPN защита"
/>
</div>
</section>
</template>
<script setup>
import { Zap } from '@lucide/vue'
</script>