-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyGp.html
82 lines (80 loc) · 3.69 KB
/
MyGp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MyGP App Loading Skeleton</title>
<!-- Tailwind CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 flex justify-center items-center min-h-screen p-4">
<div class="w-full max-w-4xl bg-white rounded-lg shadow-md p-6">
<!-- Balance Section -->
<div class="animate-pulse mb-6">
<div class="flex items-center mb-4">
<div class="bg-gray-300 h-24 w-24 rounded-full"></div>
<div class="ml-4 flex-1 space-y-4">
<div class="h-8 bg-gray-300 rounded w-3/4"></div>
<div class="h-6 bg-gray-300 rounded w-1/2"></div>
</div>
</div>
<div class="bg-gray-300 h-24 rounded-lg"></div>
</div>
<!-- Recent Transactions -->
<div class="animate-pulse mb-6">
<div class="flex items-center mb-4">
<div class="h-6 bg-gray-300 rounded w-1/4 mb-2"></div>
</div>
<div class="space-y-4">
<!-- Transaction Item 1 -->
<div class="bg-gray-300 h-16 rounded-lg p-4 flex items-center space-x-4">
<div class="h-12 w-12 bg-gray-400 rounded-full"></div>
<div class="flex-1 space-y-2">
<div class="h-4 bg-gray-400 rounded w-3/4"></div>
<div class="h-3 bg-gray-400 rounded w-1/2"></div>
</div>
</div>
<!-- Transaction Item 2 -->
<div class="bg-gray-300 h-16 rounded-lg p-4 flex items-center space-x-4">
<div class="h-12 w-12 bg-gray-400 rounded-full"></div>
<div class="flex-1 space-y-2">
<div class="h-4 bg-gray-400 rounded w-3/4"></div>
<div class="h-3 bg-gray-400 rounded w-1/2"></div>
</div>
</div>
<!-- Transaction Item 3 -->
<div class="bg-gray-300 h-16 rounded-lg p-4 flex items-center space-x-4">
<div class="h-12 w-12 bg-gray-400 rounded-full"></div>
<div class="flex-1 space-y-2">
<div class="h-4 bg-gray-400 rounded w-3/4"></div>
<div class="h-3 bg-gray-400 rounded w-1/2"></div>
</div>
</div>
</div>
</div>
<!-- Notifications Section -->
<div class="animate-pulse">
<div class="flex items-center mb-4">
<div class="h-6 bg-gray-300 rounded w-1/4 mb-2"></div>
</div>
<div class="space-y-4">
<!-- Notification Item 1 -->
<div class="bg-gray-300 h-12 rounded-lg p-4">
<div class="h-4 bg-gray-400 rounded w-3/4 mb-2"></div>
<div class="h-3 bg-gray-400 rounded w-5/6"></div>
</div>
<!-- Notification Item 2 -->
<div class="bg-gray-300 h-12 rounded-lg p-4">
<div class="h-4 bg-gray-400 rounded w-3/4 mb-2"></div>
<div class="h-3 bg-gray-400 rounded w-5/6"></div>
</div>
<!-- Notification Item 3 -->
<div class="bg-gray-300 h-12 rounded-lg p-4">
<div class="h-4 bg-gray-400 rounded w-3/4 mb-2"></div>
<div class="h-3 bg-gray-400 rounded w-5/6"></div>
</div>
</div>
</div>
</div>
</body>
</html>