DevionicSolutions/verifyverse-number-verification-hub
0
1<!DOCTYPE html>2<html lang="en">3<head>4 <meta charset="UTF-8">5 <meta name="viewport" content="width=device-width, initial-scale=1.0">6 <title>VerifyHub - Secure Number Verification</title>7 <link rel="stylesheet" href="style.css">8 <script src="https://cdn.tailwindcss.com"></script>9 <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>10 <script src="https://unpkg.com/feather-icons"></script>11 <script>12 tailwind.config = {13 theme: {14 extend: {15 colors: {16 primary: '#1E40AF',17 secondary: '#F3F4F6'18 }19 }20 }21 }22 </script>23</head>24<body class="bg-gray-50 min-h-screen">25 <div class="flex">26 <!-- Sidebar -->27 <div class="w-64 bg-white shadow-lg min-h-screen fixed left-0 top-0 z-40">28 <div class="p-6 border-b border-gray-200">29 <h1 class="text-xl font-bold text-primary flex items-center gap-2">30 <i data-feather="shield"></i>31 VerifyHub32 </h1>33 </div>34 <nav class="p-4">35 <ul class="space-y-2">36 <li><a href="dashboard.html" class="flex items-center gap-3 p-3 rounded-lg text-gray-700 hover:bg-primary hover:text-white transition-all duration-200"><i data-feather="home"></i> Dashboard</a></li>37 <li><a href="buy.html" class="flex items-center gap-3 p-3 rounded-lg text-gray-700 hover:bg-primary hover:text-white transition-all duration-200"><i data-feather="shopping-cart"></i> Buy Number</a></li>38 <li><a href="funding.html" class="flex items-center gap-3 p-3 rounded-lg text-gray-700 hover:bg-primary hover:text-white transition-all duration-200"><i data-feather="credit-card"></i> Funding</a></li>39 <li><a href="deposit-history.html" class="flex items-center gap-3 p-3 rounded-lg text-gray-700 hover:bg-primary hover:text-white transition-all duration-200"><i data-feather="dollar-sign"></i> Deposit History</a></li>40 <li><a href="number-history.html" class="flex items-center gap-3 p-3 rounded-lg text-gray-700 hover:bg-primary hover:text-white transition-all duration-200"><i data-feather="list"></i> Number History</a></li>41 <li><a href="profile.html" class="flex items-center gap-3 p-3 rounded-lg text-gray-700 hover:bg-primary hover:text-white transition-all duration-200"><i data-feather="user"></i> Profile</a></li>42 </ul>43 </nav>44 </div>45 46 <!-- Main Content -->47 <div class="ml-64 flex-1 p-8">48 <div class="max-w-6xl mx-auto">49 <div class="bg-white rounded-2xl shadow-lg p-8 text-center">50 <div class="w-20 h-20 bg-primary rounded-full flex items-center justify-center mx-auto mb-6">51 <i data-feather="shield" class="text-white w-10 h-10"></i>52 </div>53 <h1 class="text-4xl font-bold text-gray-900 mb-4">Welcome to VerifyHub</h1>54 <p class="text-gray-600 text-lg mb-8 max-w-2xl mx-auto">55 Your trusted platform for secure phone number verification services. 56 Get verified numbers for WhatsApp, Telegram, Facebook, and more.57 </p>58 <div class="flex gap-4 justify-center">59 <a href="dashboard.html" class="bg-primary text-white px-8 py-3 rounded-lg font-semibold hover:bg-blue-800 transition-all duration-200 transform hover:scale-105">60 Get Started61 </a>62 <a href="buy.html" class="border border-primary text-primary px-8 py-3 rounded-lg font-semibold hover:bg-primary hover:text-white transition-all duration-200">63 Buy Number64 </a>65 </div>66 </div>67 </div>68 </div>69 </div>70 71 <script src="script.js"></script>72 <script>73 feather.replace();74 </script>75<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>76</body>77</html>