-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
221 lines (216 loc) · 7.28 KB
/
index.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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!DOCTYPE html>
<html lang="""en"></html>
<head>
<meta charset="""UTF-8" />
<meta
name="""viewport"
content="""width=device-width, initial-scale=1.0"
/>
<title>Web Patterns</title>
<meta name="description" content="Explore various web patterns with demos and examples.">
<meta name="keywords" content="web patterns, clipboard patterns, file patterns, web app patterns, demos, examples">
<meta name="author" content="Chris Achinga">
<meta property="og:title" content="Web Patterns">
<meta property="og:description" content="Explore various web patterns with demos and examples.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://achingachris.github.io/web-patterns/">
<meta name="twitter:title" content="Web Patterns Index">
<meta name="twitter:description" content="Explore various web patterns with demos and examples.">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 text-gray-800 font-sans">
<div class="container mx-auto p-6">
<header class="mb-8 text-center">
<h1 class="text-4xl font-bold text-blue-600">
Web Patterns Directory
</h1>
<p class="text-lg text-gray-600 mt-2">
Explore various web patterns with demos and
examples.
</p>
</header>
<main
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"
>
<!-- Clipboard Section -->
<section>
<h2
class="text-2xl font-semibold text-gray-700 mb-4"
>
Clipboard Patterns
</h2>
<ul class="list-disc list-inside space-y-2">
<li>
<a
href="./clipboard/copy-text.html"
class="text-blue-500 hover:underline"
>Copy Text</a
>
</li>
<li>
<a
href="./clipboard/paste-text.html"
class="text-blue-500 hover:underline"
>Paste Text</a
>
</li>
<li>
<a
href="./clipboard/copy-image.html"
class="text-blue-500 hover:underline"
>Copy Image</a
>
</li>
<li>
<a
href="./clipboard/paste-image.html"
class="text-blue-500 hover:underline"
>Paste Image</a
>
</li>
<li>
<a
href="./clipboard/paste-files.html"
class="text-blue-500 hover:underline"
>Paste Files</a
>
</li>
</ul>
</section>
<!-- Files Section -->
<section>
<h2
class="text-2xl font-semibold text-gray-700 mb-4"
>
File Patterns
</h2>
<ul class="list-disc list-inside space-y-2">
<li>
<a
href="./files/open-directory.html"
class="text-blue-500 hover:underline"
>Open Directory</a
>
</li>
<li>
<a
href="./files/open-files.html"
class="text-blue-500 hover:underline"
>Open Files</a
>
</li>
<li>
<a
href="./files/save-file.html"
class="text-blue-500 hover:underline"
>Save File</a
>
</li>
<li>
<a
href="./files/share-files.html"
class="text-blue-500 hover:underline"
>Share Files</a
>
</li>
<li>
<a
href="./files/handle-files.html"
class="text-blue-500 hover:underline"
>Handle Files</a
>
</li>
</ul>
</section>
<!-- Web Apps Section -->
<section>
<h2
class="text-2xl font-semibold text-gray-700 mb-4"
>
Web App Patterns
</h2>
<ul class="list-disc list-inside space-y-2">
<li>
<a
href="./web-apps/share-current-page.html"
class="text-blue-500 hover:underline"
>Share Current Page</a
>
</li>
<li>
<a
href="./web-apps/app-badge.html"
class="text-blue-500 hover:underline"
>App Badge</a
>
</li>
<li>
<a
href="./web-apps/app-shortcuts/app-shortcuts.html"
class="text-blue-500 hover:underline"
>App Shortcuts</a
>
</li>
<li>
<a
href="./web-apps/periodic-sync/periodic-sync.html"
class="text-blue-500 hover:underline"
>Periodic Sync</a
>
</li>
<li>
<a
href="./web-apps/richer-install-ui.html"
class="text-blue-500 hover:underline"
>Richer Install UI</a
>
</li>
</ul>
</section>
<!-- PWA Fire Section -->
<section>
<h2 class="text-2xl font-semibold text-gray-700 mb-4">
PWA Fire Patterns
</h2>
<ul class="list-disc list-inside space-y-2">
<li>
<a href="./pwa-fire/text-files/index.html" class="text-blue-500 hover:underline">Pick and Read Text Files</a>
</li>
<li>
<a href="./pwa-fire/connectivity/index.html" class="text-blue-500 hover:underline">PWA Connectivity Status</a>
</li>
<li>
<a href="./pwa-fire/contact-picker/index.html" class="text-blue-500 hover:underline">Contacts Picker</a>
</li>
<li>
<a href="./pwa-fire/read-clipboard/index.html" class="text-blue-500 hover:underline">Read Files from Clipboard</a>
</li>
<li>
<a href="./pwa-fire/pip/index.html" class="text-blue-500 hover:underline">Picture-in-Picture Mode</a>
</li>
<li>
<a href="./pwa-fire/fullscreen/index.html" class="text-blue-500 hover:underline">Fullscreen Mode</a>
</li>
<li>
<a href="./pwa-fire/share-content/index.html" class="text-blue-500 hover:underline">Share from Web App</a>
</li>
<li>
<a href="./pwa-fire/install/index.html" class="text-blue-500 hover:underline">Custom Install Experience</a>
</li>
<li>
<a href="./pwa-fire/compress-streams/index.html" class="text-blue-500 hover:underline">CompressionStream</a>
</li>
<li>
<a href="./pwa-fire/filepicker-display/index.html" class="text-blue-500 hover:underline">File Picker with PWAFire</a>
</li>
</ul>
</section>
</main>
<footer class="mt-12 text-center">
<p class="text-gray-600 text-sm">
Built with ❤️ by Chris for DevFest Rift 2024.
</p>
</footer>
</div>
</body>
</html>