Aniskhan29 commited on
Commit
f6ebc93
·
verified ·
1 Parent(s): ebde62d

add admin panel - Initial Deployment

Browse files
Files changed (4) hide show
  1. README.md +7 -5
  2. admin.html +355 -0
  3. index.html +536 -18
  4. prompts.txt +4 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ayexpress
3
- emoji: 👀
4
- colorFrom: blue
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: ayexpress
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: gray
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
admin.html ADDED
@@ -0,0 +1,355 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Admin Panel - AYexpress</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
11
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
13
+ <style>
14
+ .sidebar {
15
+ min-height: 100vh;
16
+ width: 280px;
17
+ }
18
+ .main-content {
19
+ margin-left: 280px;
20
+ min-height: 100vh;
21
+ }
22
+ .card-hover {
23
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
24
+ }
25
+ .card-hover:hover {
26
+ transform: translateY(-2px);
27
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
28
+ }
29
+ .nav-item.active {
30
+ background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
31
+ color: white;
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="bg-gray-100">
36
+ <!-- Sidebar -->
37
+ <div class="sidebar bg-white fixed left-0 top-0 shadow-lg">
38
+ <div class="p-6 border-b border-gray-200">
39
+ <div class="flex items-center">
40
+ <div class="w-10 h-10 bg-indigo-600 rounded-lg flex items-center justify-center">
41
+ <i data-feather="shopping-bag" class="text-white w-6 h-6"></i>
42
+ </div>
43
+ <div class="ml-3">
44
+ <h1 class="text-xl font-bold text-gray-900">AYexpress</h1>
45
+ <p class="text-sm text-gray-500">Admin Panel</p>
46
+ </div>
47
+ </div>
48
+ </div>
49
+
50
+ <nav class="p-4">
51
+ <div class="mb-8">
52
+ <h3 class="text-xs font-semibold text-gray-500 uppercase tracking-wider mb-3">Main</h3>
53
+ <a href="#" class="nav-item active flex items-center px-4 py-3 rounded-lg text-gray-700 hover:bg-indigo-50 hover:text-indigo-600 mb-2">
54
+ <i data-feather="home" class="w-5 h-5 mr-3"></i>
55
+ Dashboard
56
+ </a>
57
+ <a href="#" class="nav-item flex items-center px-4 py-3 rounded-lg text-gray-700 hover:bg-indigo-50 hover:text-indigo-600 mb-2">
58
+ <i data-feather="shopping-cart" class="w-5 h-5 mr-3"></i>
59
+ Orders
60
+ </a>
61
+ <a href="#" class="nav-item flex items-center px-4 py-3 rounded-lg text-gray-700 hover:bg-indigo-50 hover:text-indigo-600 mb-2">
62
+ <i data-feather="package" class="w-5 h-5 mr-3"></i>
63
+ Products
64
+ </a>
65
+ <a href="#" class="nav-item flex items-center px-4 py-3 rounded-lg text-gray-700 hover:bg-indigo-50 hover:text-indigo-600 mb-2">
66
+ <i data-feather="users" class="w-5 h-5 mr-3"></i>
67
+ Customers
68
+ </a>
69
+ </div>
70
+
71
+ <div class="mb-8">
72
+ <h3 class="text-xs font-semibold text-gray-500 uppercase tracking-wider mb-3">Content</h3>
73
+ <a href="#" class="nav-item flex items-center px-4 py-3 rounded-lg text-gray-700 hover:bg-indigo-50 hover:text-indigo-600 mb-2">
74
+ <i data-feather="grid" class="w-5 h-5 mr-3"></i>
75
+ Categories
76
+ </a>
77
+ <a href="#" class="nav-item flex items-center px-4 py-3 rounded-lg text-gray-700 hover:bg-indigo-50 hover:text-indigo-600 mb-2">
78
+ <i data-feather="star" class="w-5 h-5 mr-3"></i>
79
+ Reviews
80
+ </a>
81
+ <a href="#" class="nav-item flex items-center px-4 py-3 rounded-lg text-gray-700 hover:bg-indigo-50 hover:text-indigo-600 mb-2">
82
+ <i data-feather="truck" class="w-5 h-5 mr-3"></i>
83
+ Shipping
84
+ </a>
85
+ </div>
86
+
87
+ <div>
88
+ <h3 class="text-xs font-semibold text-gray-500 uppercase tracking-wider mb-3">Settings</h3>
89
+ <a href="#" class="nav-item flex items-center px-4 py-3 rounded-lg text-gray-700 hover:bg-indigo-50 hover:text-indigo-600 mb-2">
90
+ <i data-feather="settings" class="w-5 h-5 mr-3"></i>
91
+ General
92
+ </a>
93
+ <a href="#" class="nav-item flex items-center px-4 py-3 rounded-lg text-gray-700 hover:bg-indigo-50 hover:text-indigo-600 mb-2">
94
+ <i data-feather="user" class="w-5 h-5 mr-3"></i>
95
+ Profile
96
+ </a>
97
+ <a href="#" class="nav-item flex items-center px-4 py-3 rounded-lg text-gray-700 hover:bg-indigo-50 hover:text-indigo-600 mb-2">
98
+ <i data-feather="log-out" class="w-5 h-5 mr-3"></i>
99
+ Logout
100
+ </a>
101
+ </div>
102
+ </nav>
103
+ </div>
104
+
105
+ <!-- Main Content -->
106
+ <div class="main-content">
107
+ <!-- Header -->
108
+ <header class="bg-white shadow-sm px-8 py-4 flex justify-between items-center">
109
+ <div>
110
+ <h1 class="text-2xl font-bold text-gray-900">Dashboard</h1>
111
+ <p class="text-gray-600">Welcome back, Admin!</p>
112
+ </div>
113
+ <div class="flex items-center space-x-4">
114
+ <div class="relative">
115
+ <input type="text" placeholder="Search..." class="pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-transparent">
116
+ <i data-feather="search" class="absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-400 w-4 h-4"></i>
117
+ </div>
118
+ <button class="p-2 rounded-full bg-gray-100 hover:bg-gray-200">
119
+ <i data-feather="bell" class="w-5 h-5 text-gray-600"></i>
120
+ </button>
121
+ <div class="flex items-center">
122
+ <img src="http://static.photos/people/200x200/10" alt="Admin" class="w-10 h-10 rounded-full object-cover">
123
+ <div class="ml-3">
124
+ <p class="text-sm font-medium text-gray-900">Admin User</p>
125
+ <p class="text-xs text-gray-500">Super Admin</p>
126
+ </div>
127
+ </div>
128
+ </div>
129
+ </header>
130
+
131
+ <!-- Stats Cards -->
132
+ <div class="p-8 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
133
+ <div class="bg-white rounded-xl p-6 shadow-sm card-hover" data-aos="fade-up">
134
+ <div class="flex items-center justify-between">
135
+ <div>
136
+ <p class="text-sm text-gray-500">Total Revenue</p>
137
+ <h2 class="text-2xl font-bold text-gray-900">$45,231.89</h2>
138
+ <p class="text-sm text-green-600">+12.5% from last month</p>
139
+ </div>
140
+ <div class="bg-green-100 p-3 rounded-lg">
141
+ <i data-feather="dollar-sign" class="text-green-600 w-6 h-6"></i>
142
+ </div>
143
+ </div>
144
+ </div>
145
+
146
+ <div class="bg-white rounded-xl p-6 shadow-sm card-hover" data-aos="fade-up" data-aos-delay="100">
147
+ <div class="flex items-center justify-between">
148
+ <div>
149
+ <p class="text-sm text-gray-500">Total Orders</p>
150
+ <h2 class="text-2xl font-bold text-gray-900">1,234</h2>
151
+ <p class="text-sm text-green-600">+8.2% from last month</p>
152
+ </div>
153
+ <div class="bg-blue-100 p-3 rounded-lg">
154
+ <i data-feather="shopping-cart" class="text-blue-600 w-6 h-6"></i>
155
+ </div>
156
+ </div>
157
+ </div>
158
+
159
+ <div class="bg-white rounded-xl p-6 shadow-sm card-hover" data-aos="fade-up" data-aos-delay="200">
160
+ <div class="flex items-center justify-between">
161
+ <div>
162
+ <p class="text-sm text-gray-500">Products</p>
163
+ <h2 class="text-2xl font-bold text-gray-900">567</h2>
164
+ <p class="text-sm text-green-600">+15 new this month</p>
165
+ </div>
166
+ <div class="bg-purple-100 p-3 rounded-lg">
167
+ <i data-feather="package" class="text-purple-600 w-6 h-6"></i>
168
+ </div>
169
+ </div>
170
+ </div>
171
+
172
+ <div class="bg-white rounded-xl p-6 shadow-sm card-hover" data-aos="fade-up" data-aos-delay="300">
173
+ <div class="flex items-center justify-between">
174
+ <div>
175
+ <p class="text-sm text-gray-500">Customers</p>
176
+ <h2 class="text-2xl font-bold text-gray-900">8,912</h2>
177
+ <p class="text-sm text-green-600">+234 new this month</p>
178
+ </div>
179
+ <div class="bg-pink-100 p-3 rounded-lg">
180
+ <i data-feather="users" class="text-pink-600 w-6 h-6"></i>
181
+ </div>
182
+ </div>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Charts & Graphs -->
187
+ <div class="px-8 pb-8 grid grid-cols-1 lg:grid-cols-2 gap-6">
188
+ <div class="bg-white rounded-xl p-6 shadow-sm" data-aos="fade-up">
189
+ <div class="flex justify-between items-center mb-6">
190
+ <h3 class="text-lg font-semibold text-gray-900">Revenue Overview</h3>
191
+ <select class="border border-gray-300 rounded-lg px-3 py-1 text-sm">
192
+ <option>Last 7 days</option>
193
+ <option>Last 30 days</option>
194
+ <option>Last 90 days</option>
195
+ </select>
196
+ </div>
197
+ <canvas id="revenueChart" height="300"></canvas>
198
+ </div>
199
+
200
+ <div class="bg-white rounded-xl p-6 shadow-sm" data-aos="fade-up" data-aos-delay="100">
201
+ <div class="flex justify-between items-center mb-6">
202
+ <h3 class="text-lg font-semibold text-gray-900">Top Categories</h3>
203
+ <select class="border border-gray-300 rounded-lg px-3 py-1 text-sm">
204
+ <option>This Month</option>
205
+ <option>Last Month</option>
206
+ <option>All Time</option>
207
+ </select>
208
+ </div>
209
+ <canvas id="categoryChart" height="300"></canvas>
210
+ </div>
211
+ </div>
212
+
213
+ <!-- Recent Orders -->
214
+ <div class="px-8 pb-8">
215
+ <div class="bg-white rounded-xl shadow-sm" data-aos="fade-up">
216
+ <div class="p-6 border-b border-gray-200">
217
+ <h3 class="text-lg font-semibold text-gray-900">Recent Orders</h3>
218
+ </div>
219
+ <div class="overflow-x-auto">
220
+ <table class="w-full">
221
+ <thead class="bg-gray-50">
222
+ <tr>
223
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Order ID</th>
224
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Customer</th>
225
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
226
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Amount</th>
227
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th>
228
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Actions</th>
229
+ </tr>
230
+ </thead>
231
+ <tbody class="divide-y divide-gray-200">
232
+ <tr>
233
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">#ORD-001</td>
234
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">John Doe</td>
235
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Dec 12, 2023</td>
236
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">$249.99</td>
237
+ <td class="px-6 py-4 whitespace-nowrap">
238
+ <span class="px-2 py-1 text-xs font-medium bg-green-100 text-green-800 rounded-full">Completed</span>
239
+ </td>
240
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
241
+ <a href="#" class="text-indigo-600 hover:text-indigo-900 mr-3">View</a>
242
+ <a href="#" class="text-red-600 hover:text-red-900">Delete</a>
243
+ </td>
244
+ </tr>
245
+ <tr>
246
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">#ORD-002</td>
247
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">Jane Smith</td>
248
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Dec 11, 2023</td>
249
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">$89.99</td>
250
+ <td class="px-6 py-4 whitespace-nowrap">
251
+ <span class="px-2 py-1 text-xs font-medium bg-yellow-100 text-yellow-800 rounded-full">Processing</span>
252
+ </td>
253
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
254
+ <a href="#" class="text-indigo-600 hover:text-indigo-900 mr-3">View</a>
255
+ <a href="#" class="text-red-600 hover:text-red-900">Delete</a>
256
+ </td>
257
+ </tr>
258
+ <tr>
259
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">#ORD-003</td>
260
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">Mike Johnson</td>
261
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Dec 10, 2023</td>
262
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">$156.50</td>
263
+ <td class="px-6 py-4 whitespace-nowrap">
264
+ <span class="px-2 py-1 text-xs font-medium bg-blue-100 text-blue-800 rounded-full">Shipped</span>
265
+ </td>
266
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
267
+ <a href="#" class="text-indigo-600 hover:text-indigo-900 mr-3">View</a>
268
+ <a href="#" class="text-red-600 hover:text-red-900">Delete</a>
269
+ </td>
270
+ </tr>
271
+ </tbody>
272
+ </table>
273
+ </div>
274
+ </div>
275
+ </div>
276
+ </div>
277
+
278
+ <script>
279
+ AOS.init({
280
+ duration: 800,
281
+ easing: 'ease-in-out',
282
+ once: true
283
+ });
284
+
285
+ // Revenue Chart
286
+ const revenueCtx = document.getElementById('revenueChart').getContext('2d');
287
+ new Chart(revenueCtx, {
288
+ type: 'line',
289
+ data: {
290
+ labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
291
+ datasets: [{
292
+ label: 'Revenue',
293
+ data: [25000, 32000, 28000, 35000, 42000, 38000, 45000, 48000, 52000, 55000, 60000, 65000],
294
+ borderColor: '#4f46e5',
295
+ backgroundColor: 'rgba(79, 70, 229, 0.1)',
296
+ fill: true,
297
+ tension: 0.4
298
+ }]
299
+ },
300
+ options: {
301
+ responsive: true,
302
+ plugins: {
303
+ legend: {
304
+ display: false
305
+ }
306
+ },
307
+ scales: {
308
+ y: {
309
+ beginAtZero: true,
310
+ grid: {
311
+ drawBorder: false
312
+ }
313
+ },
314
+ x: {
315
+ grid: {
316
+ display: false
317
+ }
318
+ }
319
+ }
320
+ }
321
+ });
322
+
323
+ // Category Chart
324
+ const categoryCtx = document.getElementById('categoryChart').getContext('2d');
325
+ new Chart(categoryCtx, {
326
+ type: 'doughnut',
327
+ data: {
328
+ labels: ['Electronics', 'Fashion', 'Home', 'Books', 'Beauty'],
329
+ datasets: [{
330
+ data: [35, 25, 20, 12, 8],
331
+ backgroundColor: [
332
+ '#4f46e5',
333
+ '#ec4899',
334
+ '#10b981',
335
+ '#f59e0b',
336
+ '#8b5cf6'
337
+ ],
338
+ borderWidth: 0
339
+ }]
340
+ },
341
+ options: {
342
+ responsive: true,
343
+ cutout: '70%',
344
+ plugins: {
345
+ legend: {
346
+ position: 'bottom'
347
+ }
348
+ }
349
+ }
350
+ });
351
+
352
+ feather.replace();
353
+ </script>
354
+ </body>
355
+ </html>
index.html CHANGED
@@ -1,19 +1,537 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
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>AYexpress - 3D Ecommerce Experience</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
13
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
14
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
15
+ <style>
16
+ .perspective-3d {
17
+ transform-style: preserve-3d;
18
+ perspective: 1000px;
19
+ }
20
+ .card-3d {
21
+ transition: transform 0.5s ease, box-shadow 0.5s ease;
22
+ transform: translateZ(0);
23
+ }
24
+ .card-3d:hover {
25
+ transform: translateZ(20px);
26
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
27
+ }
28
+ .gradient-bg {
29
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
30
+ }
31
+ .glass-effect {
32
+ background: rgba(255, 255, 255, 0.25);
33
+ backdrop-filter: blur(10px);
34
+ -webkit-backdrop-filter: blur(10px);
35
+ border: 1px solid rgba(255, 255, 255, 0.18);
36
+ }
37
+ </style>
38
+ </head>
39
+ <body class="gradient-bg min-h-screen" id="vanta-bg">
40
+ <!-- Navigation -->
41
+ <nav class="glass-effect fixed w-full z-50">
42
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
43
+ <div class="flex justify-between h-16 items-center">
44
+ <div class="flex items-center">
45
+ <div class="flex-shrink-0 text-indigo-600 font-bold text-2xl">
46
+ AYexpress
47
+ </div>
48
+ <div class="hidden md:block">
49
+ <div class="ml-10 flex items-baseline space-x-4">
50
+ <a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 rounded-md text-sm font-medium">Home</a>
51
+ <a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 rounded-md text-sm font-medium">Shop</a>
52
+ <a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 rounded-md text-sm font-medium">Categories</a>
53
+ <a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 rounded-md text-sm font-medium">About</a>
54
+ </div>
55
+ </div>
56
+ </div>
57
+ <div class="flex items-center space-x-4">
58
+ <button class="p-2 rounded-full text-gray-700 hover:bg-gray-100">
59
+ <i data-feather="search"></i>
60
+ </button>
61
+ <button class="p-2 rounded-full text-gray-700 hover:bg-gray-100">
62
+ <i data-feather="shopping-cart"></i>
63
+ </button>
64
+ <a href="admin.html" class="p-2 rounded-full text-gray-700 hover:bg-gray-100">
65
+ <i data-feather="user"></i>
66
+ </a>
67
+ <button class="md:hidden p-2 rounded-full text-gray-700 hover:bg-gray-100">
68
+ <i data-feather="menu"></i>
69
+ </button>
70
+ </div>
71
+ </div>
72
+ </div>
73
+ </nav>
74
+
75
+ <!-- Hero Section -->
76
+ <section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 perspective-3d">
77
+ <div class="max-w-7xl mx-auto">
78
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
79
+ <div class="mb-12 lg:mb-0" data-aos="fade-right">
80
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6 leading-tight">
81
+ Discover Products in <span class="text-indigo-600">3D Space</span>
82
+ </h1>
83
+ <p class="text-lg text-gray-600 mb-8 max-w-lg">
84
+ Experience shopping like never before with our immersive 3D marketplace. Find unique items from independent sellers worldwide.
85
+ </p>
86
+ <div class="flex space-x-4">
87
+ <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300 transform hover:scale-105">
88
+ Shop Now
89
+ </button>
90
+ <button class="border border-indigo-600 text-indigo-600 hover:bg-indigo-50 px-6 py-3 rounded-lg font-medium transition duration-300 transform hover:scale-105">
91
+ Explore
92
+ </button>
93
+ </div>
94
+ </div>
95
+ <div class="relative" data-aos="fade-left">
96
+ <div class="card-3d bg-white rounded-2xl p-6 shadow-xl">
97
+ <div class="aspect-w-16 aspect-h-9 rounded-xl overflow-hidden">
98
+ <img src="http://static.photos/technology/1024x576/1" alt="Featured Product" class="w-full h-full object-cover">
99
+ </div>
100
+ <div class="mt-6">
101
+ <h3 class="text-xl font-semibold text-gray-900">3D Interactive Product</h3>
102
+ <p class="text-gray-600 mt-2">Rotate, zoom and explore products in 3D space</p>
103
+ <div class="mt-4 flex justify-between items-center">
104
+ <span class="text-2xl font-bold text-indigo-600">$249.99</span>
105
+ <button class="bg-indigo-100 text-indigo-600 px-4 py-2 rounded-lg hover:bg-indigo-200 transition">
106
+ <i data-feather="eye" class="w-4 h-4 mr-2 inline"></i> View in 3D
107
+ </button>
108
+ </div>
109
+ </div>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </div>
114
+ </section>
115
+
116
+ <!-- Categories Section -->
117
+ <section class="py-16 px-4 sm:px-6 lg:px-8">
118
+ <div class="max-w-7xl mx-auto">
119
+ <div class="text-center mb-12" data-aos="fade-up">
120
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Shop by Categories</h2>
121
+ <p class="text-gray-600 max-w-2xl mx-auto">Browse through our diverse range of product categories</p>
122
+ </div>
123
+ <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-6">
124
+ <div class="card-3d bg-white rounded-xl p-6 text-center shadow-md hover:shadow-xl transition" data-aos="flip-up">
125
+ <div class="w-20 h-20 mx-auto mb-4 bg-indigo-100 rounded-full flex items-center justify-center">
126
+ <i data-feather="smartphone" class="text-indigo-600 w-8 h-8"></i>
127
+ </div>
128
+ <h3 class="font-medium text-gray-900">Electronics</h3>
129
+ <p class="text-sm text-gray-500 mt-1">128 products</p>
130
+ </div>
131
+ <div class="card-3d bg-white rounded-xl p-6 text-center shadow-md hover:shadow-xl transition" data-aos="flip-up" data-aos-delay="100">
132
+ <div class="w-20 h-20 mx-auto mb-4 bg-pink-100 rounded-full flex items-center justify-center">
133
+ <i data-feather="shirt" class="text-pink-600 w-8 h-8"></i>
134
+ </div>
135
+ <h3 class="font-medium text-gray-900">Fashion</h3>
136
+ <p class="text-sm text-gray-500 mt-1">312 products</p>
137
+ </div>
138
+ <div class="card-3d bg-white rounded-xl p-6 text-center shadow-md hover:shadow-xl transition" data-aos="flip-up" data-aos-delay="200">
139
+ <div class="w-20 h-20 mx-auto mb-4 bg-green-100 rounded-full flex items-center justify-center">
140
+ <i data-feather="home" class="text-green-600 w-8 h-8"></i>
141
+ </div>
142
+ <h3 class="font-medium text-gray-900">Home</h3>
143
+ <p class="text-sm text-gray-500 mt-1">89 products</p>
144
+ </div>
145
+ <div class="card-3d bg-white rounded-xl p-6 text-center shadow-md hover:shadow-xl transition" data-aos="flip-up" data-aos-delay="300">
146
+ <div class="w-20 h-20 mx-auto mb-4 bg-yellow-100 rounded-full flex items-center justify-center">
147
+ <i data-feather="book-open" class="text-yellow-600 w-8 h-8"></i>
148
+ </div>
149
+ <h3 class="font-medium text-gray-900">Books</h3>
150
+ <p class="text-sm text-gray-500 mt-1">56 products</p>
151
+ </div>
152
+ <div class="card-3d bg-white rounded-xl p-6 text-center shadow-md hover:shadow-xl transition" data-aos="flip-up" data-aos-delay="400">
153
+ <div class="w-20 h-20 mx-auto mb-4 bg-purple-100 rounded-full flex items-center justify-center">
154
+ <i data-feather="heart" class="text-purple-600 w-8 h-8"></i>
155
+ </div>
156
+ <h3 class="font-medium text-gray-900">Beauty</h3>
157
+ <p class="text-sm text-gray-500 mt-1">74 products</p>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ </section>
162
+
163
+ <!-- Featured Products -->
164
+ <section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
165
+ <div class="max-w-7xl mx-auto">
166
+ <div class="flex justify-between items-center mb-12">
167
+ <div data-aos="fade-right">
168
+ <h2 class="text-3xl font-bold text-gray-900">Featured Products</h2>
169
+ <p class="text-gray-600">Curated selection of premium items</p>
170
+ </div>
171
+ <a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium flex items-center" data-aos="fade-left">
172
+ View all <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
173
+ </a>
174
+ </div>
175
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
176
+ <div class="card-3d bg-gray-50 rounded-xl overflow-hidden shadow-md hover:shadow-xl transition" data-aos="zoom-in">
177
+ <div class="relative">
178
+ <img src="http://static.photos/technology/640x360/5" alt="Product" class="w-full h-48 object-cover">
179
+ <div class="absolute top-3 right-3 bg-white rounded-full p-2 shadow">
180
+ <i data-feather="heart" class="w-4 h-4 text-gray-400 hover:text-red-500 cursor-pointer"></i>
181
+ </div>
182
+ </div>
183
+ <div class="p-4">
184
+ <div class="flex justify-between items-start">
185
+ <div>
186
+ <h3 class="font-medium text-gray-900">Wireless Earbuds</h3>
187
+ <p class="text-sm text-gray-500">Electronics</p>
188
+ </div>
189
+ <span class="text-indigo-600 font-bold">$89.99</span>
190
+ </div>
191
+ <div class="mt-4 flex justify-between items-center">
192
+ <div class="flex items-center">
193
+ <div class="flex">
194
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
195
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
196
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
197
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
198
+ <i data-feather="star" class="w-4 h-4 text-yellow-400"></i>
199
+ </div>
200
+ <span class="text-xs text-gray-500 ml-1">(42)</span>
201
+ </div>
202
+ <button class="text-indigo-600 hover:text-indigo-800">
203
+ <i data-feather="shopping-cart" class="w-5 h-5"></i>
204
+ </button>
205
+ </div>
206
+ </div>
207
+ </div>
208
+ <div class="card-3d bg-gray-50 rounded-xl overflow-hidden shadow-md hover:shadow-xl transition" data-aos="zoom-in" data-aos-delay="100">
209
+ <div class="relative">
210
+ <img src="http://static.photos/fashion/640x360/7" alt="Product" class="w-full h-48 object-cover">
211
+ <div class="absolute top-3 right-3 bg-white rounded-full p-2 shadow">
212
+ <i data-feather="heart" class="w-4 h-4 text-gray-400 hover:text-red-500 cursor-pointer"></i>
213
+ </div>
214
+ </div>
215
+ <div class="p-4">
216
+ <div class="flex justify-between items-start">
217
+ <div>
218
+ <h3 class="font-medium text-gray-900">Leather Wallet</h3>
219
+ <p class="text-sm text-gray-500">Fashion</p>
220
+ </div>
221
+ <span class="text-indigo-600 font-bold">$49.99</span>
222
+ </div>
223
+ <div class="mt-4 flex justify-between items-center">
224
+ <div class="flex items-center">
225
+ <div class="flex">
226
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
227
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
228
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
229
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
230
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
231
+ </div>
232
+ <span class="text-xs text-gray-500 ml-1">(128)</span>
233
+ </div>
234
+ <button class="text-indigo-600 hover:text-indigo-800">
235
+ <i data-feather="shopping-cart" class="w-5 h-5"></i>
236
+ </button>
237
+ </div>
238
+ </div>
239
+ </div>
240
+ <div class="card-3d bg-gray-50 rounded-xl overflow-hidden shadow-md hover:shadow-xl transition" data-aos="zoom-in" data-aos-delay="200">
241
+ <div class="relative">
242
+ <img src="http://static.photos/home/640x360/3" alt="Product" class="w-full h-48 object-cover">
243
+ <div class="absolute top-3 right-3 bg-white rounded-full p-2 shadow">
244
+ <i data-feather="heart" class="w-4 h-4 text-gray-400 hover:text-red-500 cursor-pointer"></i>
245
+ </div>
246
+ </div>
247
+ <div class="p-4">
248
+ <div class="flex justify-between items-start">
249
+ <div>
250
+ <h3 class="font-medium text-gray-900">Ceramic Vase</h3>
251
+ <p class="text-sm text-gray-500">Home Decor</p>
252
+ </div>
253
+ <span class="text-indigo-600 font-bold">$34.99</span>
254
+ </div>
255
+ <div class="mt-4 flex justify-between items-center">
256
+ <div class="flex items-center">
257
+ <div class="flex">
258
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
259
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
260
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
261
+ <i data-feather="star" class="w-4 h-4 text-yellow-400"></i>
262
+ <i data-feather="star" class="w-4 h-4 text-yellow-400"></i>
263
+ </div>
264
+ <span class="text-xs text-gray-500 ml-1">(19)</span>
265
+ </div>
266
+ <button class="text-indigo-600 hover:text-indigo-800">
267
+ <i data-feather="shopping-cart" class="w-5 h-5"></i>
268
+ </button>
269
+ </div>
270
+ </div>
271
+ </div>
272
+ <div class="card-3d bg-gray-50 rounded-xl overflow-hidden shadow-md hover:shadow-xl transition" data-aos="zoom-in" data-aos-delay="300">
273
+ <div class="relative">
274
+ <img src="http://static.photos/beauty/640x360/9" alt="Product" class="w-full h-48 object-cover">
275
+ <div class="absolute top-3 right-3 bg-white rounded-full p-2 shadow">
276
+ <i data-feather="heart" class="w-4 h-4 text-gray-400 hover:text-red-500 cursor-pointer"></i>
277
+ </div>
278
+ </div>
279
+ <div class="p-4">
280
+ <div class="flex justify-between items-start">
281
+ <div>
282
+ <h3 class="font-medium text-gray-900">Organic Face Cream</h3>
283
+ <p class="text-sm text-gray-500">Beauty</p>
284
+ </div>
285
+ <span class="text-indigo-600 font-bold">$24.99</span>
286
+ </div>
287
+ <div class="mt-4 flex justify-between items-center">
288
+ <div class="flex items-center">
289
+ <div class="flex">
290
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
291
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
292
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
293
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
294
+ <i data-feather="star" class="w-4 h-4 text-yellow-400"></i>
295
+ </div>
296
+ <span class="text-xs text-gray-500 ml-1">(87)</span>
297
+ </div>
298
+ <button class="text-indigo-600 hover:text-indigo-800">
299
+ <i data-feather="shopping-cart" class="w-5 h-5"></i>
300
+ </button>
301
+ </div>
302
+ </div>
303
+ </div>
304
+ </div>
305
+ </div>
306
+ </section>
307
+
308
+ <!-- 3D Experience Section -->
309
+ <section class="py-20 px-4 sm:px-6 lg:px-8 gradient-bg">
310
+ <div class="max-w-7xl mx-auto">
311
+ <div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
312
+ <div class="mb-12 lg:mb-0" data-aos="fade-right">
313
+ <h2 class="text-3xl font-bold text-gray-900 mb-6">Immersive <span class="text-indigo-600">3D Shopping</span> Experience</h2>
314
+ <p class="text-gray-600 mb-6">
315
+ Our platform brings products to life with interactive 3D models that you can rotate, zoom, and explore from every angle.
316
+ </p>
317
+ <ul class="space-y-4">
318
+ <li class="flex items-start">
319
+ <div class="flex-shrink-0 bg-indigo-100 rounded-full p-2 mr-4">
320
+ <i data-feather="rotate-cw" class="text-indigo-600 w-5 h-5"></i>
321
+ </div>
322
+ <div>
323
+ <h3 class="font-medium text-gray-900">360° Product View</h3>
324
+ <p class="text-gray-600 text-sm">See every detail from all angles</p>
325
+ </div>
326
+ </li>
327
+ <li class="flex items-start">
328
+ <div class="flex-shrink-0 bg-indigo-100 rounded-full p-2 mr-4">
329
+ <i data-feather="zoom-in" class="text-indigo-600 w-5 h-5"></i>
330
+ </div>
331
+ <div>
332
+ <h3 class="font-medium text-gray-900">Zoom & Inspect</h3>
333
+ <p class="text-gray-600 text-sm">Get up close with high-resolution details</p>
334
+ </div>
335
+ </li>
336
+ <li class="flex items-start">
337
+ <div class="flex-shrink-0 bg-indigo-100 rounded-full p-2 mr-4">
338
+ <i data-feather="box" class="text-indigo-600 w-5 h-5"></i>
339
+ </div>
340
+ <div>
341
+ <h3 class="font-medium text-gray-900">AR Preview</h3>
342
+ <p class="text-gray-600 text-sm">See how products look in your space</p>
343
+ </div>
344
+ </li>
345
+ </ul>
346
+ </div>
347
+ <div class="relative h-96" data-aos="fade-left">
348
+ <div class="absolute inset-0 card-3d bg-white rounded-2xl shadow-xl overflow-hidden">
349
+ <div class="h-full flex items-center justify-center">
350
+ <div class="text-center p-8">
351
+ <div class="w-32 h-32 mx-auto mb-6 bg-indigo-100 rounded-full flex items-center justify-center">
352
+ <i data-feather="box" class="text-indigo-600 w-16 h-16"></i>
353
+ </div>
354
+ <h3 class="text-xl font-semibold text-gray-900 mb-2">3D Product Viewer</h3>
355
+ <p class="text-gray-600 mb-4">Experience products in a whole new dimension</p>
356
+ <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-2 rounded-lg font-medium">
357
+ Try Demo
358
+ </button>
359
+ </div>
360
+ </div>
361
+ </div>
362
+ </div>
363
+ </div>
364
+ </div>
365
+ </section>
366
+
367
+ <!-- Testimonials -->
368
+ <section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
369
+ <div class="max-w-7xl mx-auto">
370
+ <div class="text-center mb-12" data-aos="fade-up">
371
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Customers Say</h2>
372
+ <p class="text-gray-600 max-w-2xl mx-auto">Hear from shoppers who love our 3D marketplace experience</p>
373
+ </div>
374
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
375
+ <div class="card-3d bg-gray-50 rounded-xl p-6 shadow-sm hover:shadow-md transition" data-aos="fade-up">
376
+ <div class="flex items-center mb-4">
377
+ <img src="http://static.photos/people/200x200/1" alt="Customer" class="w-12 h-12 rounded-full object-cover">
378
+ <div class="ml-4">
379
+ <h4 class="font-medium text-gray-900">Sarah Johnson</h4>
380
+ <div class="flex">
381
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
382
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
383
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
384
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
385
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
386
+ </div>
387
+ </div>
388
+ </div>
389
+ <p class="text-gray-600">
390
+ "The 3D product viewer is revolutionary! I could examine the craftsmanship of the handbag from every angle before purchasing."
391
+ </p>
392
+ </div>
393
+ <div class="card-3d bg-gray-50 rounded-xl p-6 shadow-sm hover:shadow-md transition" data-aos="fade-up" data-aos-delay="100">
394
+ <div class="flex items-center mb-4">
395
+ <img src="http://static.photos/people/200x200/2" alt="Customer" class="w-12 h-12 rounded-full object-cover">
396
+ <div class="ml-4">
397
+ <h4 class="font-medium text-gray-900">Michael Chen</h4>
398
+ <div class="flex">
399
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
400
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
401
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
402
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
403
+ <i data-feather="star" class="w-4 h-4 text-yellow-400"></i>
404
+ </div>
405
+ </div>
406
+ </div>
407
+ <p class="text-gray-600">
408
+ "As a designer, I appreciate being able to see products in 3D. It gives me confidence in my purchases that photos alone can't provide."
409
+ </p>
410
+ </div>
411
+ <div class="card-3d bg-gray-50 rounded-xl p-6 shadow-sm hover:shadow-md transition" data-aos="fade-up" data-aos-delay="200">
412
+ <div class="flex items-center mb-4">
413
+ <img src="http://static.photos/people/200x200/3" alt="Customer" class="w-12 h-12 rounded-full object-cover">
414
+ <div class="ml-4">
415
+ <h4 class="font-medium text-gray-900">Emma Rodriguez</h4>
416
+ <div class="flex">
417
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
418
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
419
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
420
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
421
+ <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i>
422
+ </div>
423
+ </div>
424
+ </div>
425
+ <p class="text-gray-600">
426
+ "The AR feature let me see how the lamp would look in my living room before buying. No more guessing about size and style!"
427
+ </p>
428
+ </div>
429
+ </div>
430
+ </div>
431
+ </section>
432
+
433
+ <!-- CTA Section -->
434
+ <section class="py-20 px-4 sm:px-6 lg:px-8 bg-indigo-600 text-white">
435
+ <div class="max-w-4xl mx-auto text-center" data-aos="zoom-in">
436
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Experience 3D Shopping?</h2>
437
+ <p class="text-xl text-indigo-100 mb-8">
438
+ Join thousands of happy customers discovering products in a whole new way.
439
+ </p>
440
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
441
+ <button class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-3 rounded-lg font-bold transition duration-300 transform hover:scale-105">
442
+ Start Shopping
443
+ </button>
444
+ <button class="border-2 border-white text-white hover:bg-indigo-700 px-8 py-3 rounded-lg font-bold transition duration-300 transform hover:scale-105">
445
+ Learn More
446
+ </button>
447
+ </div>
448
+ </div>
449
+ </section>
450
+
451
+ <!-- Footer -->
452
+ <footer class="bg-gray-900 text-white py-12 px-4 sm:px-6 lg:px-8">
453
+ <div class="max-w-7xl mx-auto">
454
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
455
+ <div>
456
+ <h3 class="text-xl font-bold mb-4">NEXUS</h3>
457
+ <p class="text-gray-400">
458
+ The future of ecommerce with immersive 3D shopping experiences.
459
+ </p>
460
+ <div class="flex space-x-4 mt-6">
461
+ <a href="#" class="text-gray-400 hover:text-white">
462
+ <i data-feather="facebook"></i>
463
+ </a>
464
+ <a href="#" class="text-gray-400 hover:text-white">
465
+ <i data-feather="twitter"></i>
466
+ </a>
467
+ <a href="#" class="text-gray-400 hover:text-white">
468
+ <i data-feather="instagram"></i>
469
+ </a>
470
+ <a href="#" class="text-gray-400 hover:text-white">
471
+ <i data-feather="linkedin"></i>
472
+ </a>
473
+ </div>
474
+ </div>
475
+ <div>
476
+ <h4 class="font-semibold text-lg mb-4">Shop</h4>
477
+ <ul class="space-y-2">
478
+ <li><a href="#" class="text-gray-400 hover:text-white">All Products</a></li>
479
+ <li><a href="#" class="text-gray-400 hover:text-white">Featured</a></li>
480
+ <li><a href="#" class="text-gray-400 hover:text-white">New Arrivals</a></li>
481
+ <li><a href="#" class="text-gray-400 hover:text-white">Best Sellers</a></li>
482
+ <li><a href="#" class="text-gray-400 hover:text-white">Special Offers</a></li>
483
+ </ul>
484
+ </div>
485
+ <div>
486
+ <h4 class="font-semibold text-lg mb-4">Company</h4>
487
+ <ul class="space-y-2">
488
+ <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
489
+ <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
490
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
491
+ <li><a href="#" class="text-gray-400 hover:text-white">Press</a></li>
492
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
493
+ </ul>
494
+ </div>
495
+ <div>
496
+ <h4 class="font-semibold text-lg mb-4">Help</h4>
497
+ <ul class="space-y-2">
498
+ <li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
499
+ <li><a href="#" class="text-gray-400 hover:text-white">Shipping</a></li>
500
+ <li><a href="#" class="text-gray-400 hover:text-white">Returns</a></li>
501
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
502
+ <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
503
+ </ul>
504
+ </div>
505
+ </div>
506
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
507
+ <p>© 2023 AYexpress. All rights reserved.</p>
508
+ </div>
509
+ </div>
510
+ </footer>
511
+
512
+ <script>
513
+ // Initialize Vanta.js globe background
514
+ VANTA.GLOBE({
515
+ el: "#vanta-bg",
516
+ mouseControls: true,
517
+ touchControls: true,
518
+ gyroControls: false,
519
+ minHeight: 200.00,
520
+ minWidth: 200.00,
521
+ scale: 1.00,
522
+ scaleMobile: 1.00,
523
+ color: 0x5e35b1,
524
+ backgroundColor: 0xf5f7fa,
525
+ size: 0.8
526
+ });
527
+ </script>
528
+ <script>
529
+ AOS.init({
530
+ duration: 800,
531
+ easing: 'ease-in-out',
532
+ once: true
533
+ });
534
+ </script>
535
+ <script>feather.replace();</script>
536
+ </body>
537
  </html>
prompts.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ build mixed marketplace ecommerce website them UI use vite lightswind UI alsom make 3D feel
2
+ site nam : AYexprees
3
+ add admin panel
4
+ add admin panel