|
| 1 | +@page "/entry" |
| 2 | +@using Microsoft.AspNetCore.Components.Authorization |
| 3 | +@layout Components.Layout.EntryLayout |
| 4 | + |
| 5 | +<PageTitle>Welcome - Estate Management</PageTitle> |
| 6 | + |
| 7 | +<div class="min-h-screen bg-gray-50 flex flex-col"> |
| 8 | + <!-- Main Content --> |
| 9 | + <div class="flex-1 flex items-center justify-center px-4 py-12"> |
| 10 | + <div class="max-w-7xl w-full"> |
| 11 | + <!-- Three Column Layout --> |
| 12 | + <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> |
| 13 | + <!-- Estate Management Card --> |
| 14 | + <div class="bg-white rounded-lg shadow-lg p-8 flex flex-col"> |
| 15 | + <h2 class="text-2xl font-bold text-gray-900 mb-6">Estate Management</h2> |
| 16 | + |
| 17 | + <!-- Icon --> |
| 18 | + <div class="flex justify-center mb-6"> |
| 19 | + <svg class="w-24 h-24 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| 20 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4"></path> |
| 21 | + </svg> |
| 22 | + </div> |
| 23 | + |
| 24 | + <!-- Features --> |
| 25 | + <div class="space-y-3 mb-8 flex-1"> |
| 26 | + <div class="flex items-start"> |
| 27 | + <svg class="w-5 h-5 text-green-500 mt-0.5 mr-3 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"> |
| 28 | + <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path> |
| 29 | + </svg> |
| 30 | + <span class="text-gray-700">Manage estate details</span> |
| 31 | + </div> |
| 32 | + <div class="flex items-start"> |
| 33 | + <svg class="w-5 h-5 text-green-500 mt-0.5 mr-3 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"> |
| 34 | + <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path> |
| 35 | + </svg> |
| 36 | + <span class="text-gray-700">Manage estate users</span> |
| 37 | + </div> |
| 38 | + <div class="flex items-start"> |
| 39 | + <svg class="w-5 h-5 text-green-500 mt-0.5 mr-3 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"> |
| 40 | + <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path> |
| 41 | + </svg> |
| 42 | + <span class="text-gray-700">Operator Management</span> |
| 43 | + </div> |
| 44 | + </div> |
| 45 | + |
| 46 | + <!-- Button --> |
| 47 | + <a href="/estate-info" class="bg-blue-600 hover:bg-blue-700 text-white font-medium px-6 py-3 rounded transition-colors duration-150 text-center text-lg shadow-sm"> |
| 48 | + View More |
| 49 | + </a> |
| 50 | + </div> |
| 51 | + |
| 52 | + <!-- Merchant Management Card --> |
| 53 | + <div class="bg-white rounded-lg shadow-lg p-8 flex flex-col"> |
| 54 | + <h2 class="text-2xl font-bold text-gray-900 mb-6">Merchant Management</h2> |
| 55 | + |
| 56 | + <!-- Icon --> |
| 57 | + <div class="flex justify-center mb-6"> |
| 58 | + <svg class="w-24 h-24 text-green-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| 59 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z"></path> |
| 60 | + </svg> |
| 61 | + </div> |
| 62 | + |
| 63 | + <!-- Features --> |
| 64 | + <div class="space-y-3 mb-8 flex-1"> |
| 65 | + <div class="flex items-start"> |
| 66 | + <svg class="w-5 h-5 text-green-500 mt-0.5 mr-3 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"> |
| 67 | + <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path> |
| 68 | + </svg> |
| 69 | + <span class="text-gray-700">Manage Merchant Details</span> |
| 70 | + </div> |
| 71 | + <div class="flex items-start"> |
| 72 | + <svg class="w-5 h-5 text-green-500 mt-0.5 mr-3 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"> |
| 73 | + <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path> |
| 74 | + </svg> |
| 75 | + <span class="text-gray-700">Balance Management</span> |
| 76 | + </div> |
| 77 | + <div class="flex items-start"> |
| 78 | + <svg class="w-5 h-5 text-green-500 mt-0.5 mr-3 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"> |
| 79 | + <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path> |
| 80 | + </svg> |
| 81 | + <span class="text-gray-700">Fee Management</span> |
| 82 | + </div> |
| 83 | + </div> |
| 84 | + |
| 85 | + <!-- Button --> |
| 86 | + <a href="/merchant-info" class="bg-green-600 hover:bg-green-700 text-white font-medium px-6 py-3 rounded transition-colors duration-150 text-center text-lg"> |
| 87 | + View More |
| 88 | + </a> |
| 89 | + </div> |
| 90 | + |
| 91 | + <!-- File Processing Card --> |
| 92 | + <div class="bg-white rounded-lg shadow-lg p-8 flex flex-col"> |
| 93 | + <h2 class="text-2xl font-bold text-gray-900 mb-6">File Processing</h2> |
| 94 | + |
| 95 | + <!-- Icon --> |
| 96 | + <div class="flex justify-center mb-6"> |
| 97 | + <svg class="w-24 h-24 text-yellow-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| 98 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"></path> |
| 99 | + </svg> |
| 100 | + </div> |
| 101 | + |
| 102 | + <!-- Features --> |
| 103 | + <div class="space-y-3 mb-8 flex-1"> |
| 104 | + <div class="flex items-start"> |
| 105 | + <svg class="w-5 h-5 text-green-500 mt-0.5 mr-3 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"> |
| 106 | + <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path> |
| 107 | + </svg> |
| 108 | + <span class="text-gray-700">Transaction Files</span> |
| 109 | + </div> |
| 110 | + <div class="flex items-start"> |
| 111 | + <svg class="w-5 h-5 text-green-500 mt-0.5 mr-3 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"> |
| 112 | + <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path> |
| 113 | + </svg> |
| 114 | + <span class="text-gray-700">Settlement Processing</span> |
| 115 | + </div> |
| 116 | + <div class="flex items-start"> |
| 117 | + <svg class="w-5 h-5 text-green-500 mt-0.5 mr-3 flex-shrink-0" fill="currentColor" viewBox="0 0 20 20"> |
| 118 | + <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path> |
| 119 | + </svg> |
| 120 | + <span class="text-gray-700">Bulk Processing</span> |
| 121 | + </div> |
| 122 | + </div> |
| 123 | + |
| 124 | + <!-- Button --> |
| 125 | + <a href="/file-info" class="bg-teal-600 hover:bg-teal-700 text-white font-medium px-6 py-3 rounded transition-colors duration-150 text-center text-lg"> |
| 126 | + View More |
| 127 | + </a> |
| 128 | + </div> |
| 129 | + </div> |
| 130 | + |
| 131 | + <!-- Sign In Section --> |
| 132 | + <div class="mt-12 text-center"> |
| 133 | + <p class="text-gray-600 mb-4">Sign in to access all features</p> |
| 134 | + <a href="/login" class="inline-flex items-center px-8 py-3 bg-blue-600 hover:bg-blue-700 text-white font-semibold rounded-lg shadow-md transition-colors duration-150"> |
| 135 | + <svg class="w-5 h-5 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| 136 | + <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h7a3 3 0 013 3v1"></path> |
| 137 | + </svg> |
| 138 | + Sign In |
| 139 | + </a> |
| 140 | + </div> |
| 141 | + </div> |
| 142 | + </div> |
| 143 | +</div> |
0 commit comments