-
Notifications
You must be signed in to change notification settings - Fork 0
/
Meta_Business.html
85 lines (83 loc) · 3.83 KB
/
Meta_Business.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
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meta Business Site 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">
<!-- Business Information -->
<div class="animate-pulse mb-6">
<div class="flex items-center mb-4">
<div class="bg-gray-300 h-20 w-20 rounded-full"></div>
<div class="ml-4 flex-1 space-y-4">
<div class="h-6 bg-gray-300 rounded w-3/4"></div>
<div class="h-4 bg-gray-300 rounded w-1/2"></div>
</div>
</div>
<div class="space-y-4">
<div class="h-4 bg-gray-300 rounded w-full"></div>
<div class="h-4 bg-gray-300 rounded w-5/6"></div>
<div class="h-4 bg-gray-300 rounded w-4/6"></div>
</div>
</div>
<!-- Analytics Section -->
<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="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
<!-- Analytics Card 1 -->
<div class="bg-gray-300 h-40 rounded-lg p-4">
<div class="h-6 bg-gray-400 rounded w-3/4 mb-2"></div>
<div class="h-3 bg-gray-400 rounded w-1/2"></div>
</div>
<!-- Analytics Card 2 -->
<div class="bg-gray-300 h-40 rounded-lg p-4">
<div class="h-6 bg-gray-400 rounded w-3/4 mb-2"></div>
<div class="h-3 bg-gray-400 rounded w-1/2"></div>
</div>
<!-- Analytics Card 3 -->
<div class="bg-gray-300 h-40 rounded-lg p-4">
<div class="h-6 bg-gray-400 rounded w-3/4 mb-2"></div>
<div class="h-3 bg-gray-400 rounded w-1/2"></div>
</div>
<!-- Analytics Card 4 -->
<div class="bg-gray-300 h-40 rounded-lg p-4">
<div class="h-6 bg-gray-400 rounded w-3/4 mb-2"></div>
<div class="h-3 bg-gray-400 rounded w-1/2"></div>
</div>
</div>
</div>
<!-- Recent Posts -->
<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">
<!-- Post 1 -->
<div class="bg-gray-300 h-48 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-1/2"></div>
<div class="h-3 bg-gray-400 rounded w-5/6 mt-2"></div>
</div>
<!-- Post 2 -->
<div class="bg-gray-300 h-48 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-1/2"></div>
<div class="h-3 bg-gray-400 rounded w-5/6 mt-2"></div>
</div>
<!-- Post 3 -->
<div class="bg-gray-300 h-48 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-1/2"></div>
<div class="h-3 bg-gray-400 rounded w-5/6 mt-2"></div>
</div>
</div>
</div>
</div>
</body>
</html>