-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathimage-gallery.json
More file actions
169 lines (169 loc) · 6.99 KB
/
image-gallery.json
File metadata and controls
169 lines (169 loc) · 6.99 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"type": "div",
"className": "min-h-screen bg-gradient-to-br from-rose-50 via-pink-50 to-fuchsia-100 p-6 md:p-8",
"body": [
{
"type": "div",
"className": "max-w-6xl mx-auto space-y-8",
"body": [
{
"type": "div",
"className": "space-y-3 backdrop-blur-sm bg-white/40 p-6 rounded-2xl border border-white/60 shadow-xl text-center",
"body": [
{
"type": "text",
"content": "🖼️ Image Component Gallery",
"className": "text-4xl font-black bg-gradient-to-r from-rose-600 via-pink-600 to-fuchsia-600 bg-clip-text text-transparent"
},
{
"type": "text",
"content": "Various image layouts and styles using Tailwind CSS",
"className": "text-gray-600 font-medium text-lg"
}
]
},
{
"type": "div",
"className": "space-y-8",
"body": [
{
"type": "card",
"className": "p-8 shadow-2xl border-0 bg-white/90 backdrop-blur-lg rounded-2xl",
"body": {
"type": "div",
"className": "space-y-6",
"body": [
{
"type": "text",
"content": "🌄 Hero Image",
"className": "text-2xl font-bold text-gray-900"
},
{
"type": "image",
"src": "https://images.unsplash.com/photo-1682687220742-aba13b6e50ba",
"alt": "Mountain landscape",
"className": "w-full h-80 object-cover rounded-2xl shadow-2xl hover:shadow-3xl transition-all hover:scale-[1.02] duration-300 ring-4 ring-white"
}
]
}
},
{
"type": "card",
"className": "p-8 shadow-2xl border-0 bg-white/90 backdrop-blur-lg rounded-2xl",
"body": {
"type": "div",
"className": "space-y-6",
"body": [
{
"type": "text",
"content": "🎨 Image Grid",
"className": "text-2xl font-bold text-gray-900"
},
{
"type": "grid",
"columns": 3,
"gap": 6,
"children": [
{
"type": "image",
"src": "https://images.unsplash.com/photo-1682687220742-aba13b6e50ba",
"alt": "Image 1",
"className": "w-full h-48 object-cover rounded-xl shadow-lg hover:shadow-2xl transition-all hover:scale-105 duration-300 ring-2 ring-white"
},
{
"type": "image",
"src": "https://images.unsplash.com/photo-1682687221038-404cb8830901",
"alt": "Image 2",
"className": "w-full h-48 object-cover rounded-xl shadow-lg hover:shadow-2xl transition-all hover:scale-105 duration-300 ring-2 ring-white"
},
{
"type": "image",
"src": "https://images.unsplash.com/photo-1682687220063-4742bd7fd538",
"alt": "Image 3",
"className": "w-full h-48 object-cover rounded-xl shadow-lg hover:shadow-2xl transition-all hover:scale-105 duration-300 ring-2 ring-white"
}
]
}
]
}
},
{
"type": "card",
"className": "p-8 shadow-2xl border-0 bg-white/90 backdrop-blur-lg rounded-2xl",
"body": {
"type": "div",
"className": "space-y-6",
"body": [
{
"type": "text",
"content": "✨ Styled Images",
"className": "text-2xl font-bold text-gray-900"
},
{
"type": "flex",
"direction": "row",
"gap": 8,
"className": "flex-wrap justify-center",
"children": [
{
"type": "div",
"className": "text-center space-y-3",
"body": [
{
"type": "image",
"src": "https://images.unsplash.com/photo-1682687220742-aba13b6e50ba",
"alt": "Rounded",
"className": "w-40 h-40 object-cover rounded-full border-8 border-rose-200 shadow-2xl hover:border-rose-400 transition-all hover:scale-110 duration-300"
},
{
"type": "text",
"content": "Circular",
"className": "text-sm font-semibold text-gray-600"
}
]
},
{
"type": "div",
"className": "text-center space-y-3",
"body": [
{
"type": "image",
"src": "https://images.unsplash.com/photo-1682687221038-404cb8830901",
"alt": "Square",
"className": "w-40 h-40 object-cover rounded-2xl shadow-2xl hover:shadow-3xl transition-all hover:-translate-y-2 duration-300 ring-4 ring-pink-300"
},
{
"type": "text",
"content": "Rounded Square",
"className": "text-sm font-semibold text-gray-600"
}
]
},
{
"type": "div",
"className": "text-center space-y-3",
"body": [
{
"type": "image",
"src": "https://images.unsplash.com/photo-1682687220063-4742bd7fd538",
"alt": "Styled",
"className": "w-40 h-40 object-cover rounded-xl ring-4 ring-fuchsia-500 ring-offset-4 shadow-2xl hover:ring-offset-8 transition-all hover:rotate-3 duration-300"
},
{
"type": "text",
"content": "Ring Style",
"className": "text-sm font-semibold text-gray-600"
}
]
}
]
}
]
}
}
]
}
]
}
]
}