-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
286 lines (256 loc) Β· 14 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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary Meta Tags -->
<title>Golden Prompts Library - AI Prompt Templates Collection</title>
<meta name="title" content="Golden Prompts Library - AI Prompt Templates Collection">
<meta name="description"
content="Comprehensive collection of AI prompt templates for content creation, blog writing, SEO, technical documentation, and more. Customizable templates for efficient content generation.">
<meta name="keywords"
content="AI prompts, content templates, blog writing, SEO optimization, technical writing, marketing prompts, content creation">
<meta name="author" content="AnLoMinus">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<meta name="revisit-after" content="7 days">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://golden-prompts-library.com/">
<meta property="og:title" content="Golden Prompts Library - AI Prompt Templates Collection">
<meta property="og:description"
content="Comprehensive collection of AI prompt templates for content creation, blog writing, SEO, technical documentation, and more.">
<meta property="og:image" content="https://golden-prompts-library.com/images/og-image.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://golden-prompts-library.com/">
<meta property="twitter:title" content="Golden Prompts Library - AI Prompt Templates Collection">
<meta property="twitter:description"
content="Comprehensive collection of AI prompt templates for content creation, blog writing, SEO, technical documentation, and more.">
<meta property="twitter:image" content="https://golden-prompts-library.com/images/twitter-image.jpg">
<!-- Theme Color -->
<meta name="theme-color" content="#D4AF37">
<meta name="msapplication-navbutton-color" content="#D4AF37">
<meta name="apple-mobile-web-app-status-bar-style" content="#D4AF37">
<!-- App Meta -->
<meta name="application-name" content="Golden Prompts Library">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Golden Prompts Library">
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="manifest" href="site.webmanifest">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<!-- Preconnect -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://cdnjs.cloudflare.com">
</head>
<body>
<nav class="top-navbar">
<div class="nav-brand">
<i class="fas fa-book-open"></i>
<span>Golden Prompts Library</span>
</div>
<div class="nav-actions">
<button id="configureTopicBtn" class="nav-btn" data-tooltip="Configure Topic">
<i class="fas fa-cog"></i>
<span>Configure</span>
</button>
<button id="infoBtn" class="nav-btn" data-tooltip="About & Help">
<i class="fas fa-info-circle"></i>
<span>Info</span>
</button>
<button id="darkModeBtn" class="nav-btn" data-tooltip="Toggle Dark Mode">
<i class="fas fa-moon"></i>
<span>Theme</span>
</button>
</div>
</nav>
<nav class="sidebar">
<div class="sidebar-header">
<h2>Categories</h2>
<button id="toggleSidebar" class="toggle-btn">
<i class="fas fa-bars"></i>
</button>
</div>
<ul id="categoryList" class="category-list"></ul>
</nav>
<main class="main-content">
<header class="main-header">
<h1>Golden Prompts Library</h1>
<div id="topicFormModal" class="modal">
<div class="modal-content">
<div class="modal-header">
<h3>Configure Your Topic</h3>
<button class="close-modal">×</button>
</div>
<form id="topicForm" class="topic-form">
<div class="form-group">
<label for="topicName">Topic Name:</label>
<input type="text" id="topicName" placeholder="Enter your topic" required>
</div>
<div class="form-group">
<label for="topicDescription">Brief Description:</label>
<textarea id="topicDescription" placeholder="Describe your topic"></textarea>
</div>
<div class="form-group">
<label for="industry">Industry:</label>
<input type="text" id="industry" placeholder="Enter industry">
</div>
<button type="submit" class="apply-btn">Apply to All Prompts</button>
</form>
</div>
</div>
<div id="infoModal" class="modal info-modal">
<div class="modal-content info-content">
<div class="modal-header">
<h3>About Golden Prompts Library</h3>
<button class="close-modal">×</button>
</div>
<div class="modal-body">
<div class="tabs">
<button class="tab-btn active" data-tab="about">About</button>
<button class="tab-btn" data-tab="guide">User Guide</button>
<button class="tab-btn" data-tab="version">Version Info</button>
</div>
<div class="tab-content active" id="about">
<h4>What is Golden Prompts Library?</h4>
<p>Golden Prompts Library is a comprehensive collection of AI prompt templates designed to
help you create high-quality content efficiently. Our library includes prompts for
various purposes including blog writing, SEO optimization, technical documentation, and
more.</p>
<h4>Features</h4>
<ul>
<li>π― 30+ Categories of prompts</li>
<li>π Customizable templates</li>
<li>π Advanced search and filtering</li>
<li>π± Responsive design</li>
<li>π Dark mode support</li>
</ul>
<h4>Credits</h4>
<div class="credits">
<h5>Development Team</h5>
<ul>
<li>
<strong>Lead Developer:</strong>
<a href="https://github.com/AnLoMinus" target="_blank">
<i class="fab fa-github"></i> βΈ AnLoMinus
</a>
</li>
<li>
<strong>AI Assistant:</strong>
<span>Claude 3 Sonnet (Anthropic)</span>
</li>
</ul>
<h5>Version</h5>
<p>Current Version: 1.0.0</p>
<p>Last Updated: November 3, 2024</p>
<h5>License</h5>
<p>Β© 2024 Golden Prompts Library. All rights reserved.</p>
</div>
</div>
<div class="tab-content" id="guide">
<h4>How to Use</h4>
<ol>
<li>
<strong>Configure Your Topic:</strong>
<p>Click the "Configure Topic" button to set up your topic details. This will
automatically replace placeholders in all prompts.</p>
</li>
<li>
<strong>Browse Categories:</strong>
<p>Use the sidebar to filter prompts by category. You can select multiple
categories.</p>
</li>
<li>
<strong>Search & Sort:</strong>
<p>Use the search bar to find specific prompts. Sort results by title or category.
</p>
</li>
<li>
<strong>Copy Prompts:</strong>
<p>Hover over any prompt card and click the copy button to copy the content.</p>
</li>
</ol>
<h4>Keyboard Shortcuts</h4>
<ul class="shortcuts">
<li><kbd>Ctrl</kbd> + <kbd>K</kbd> Focus search</li>
<li><kbd>Ctrl</kbd> + <kbd>/</kbd> Toggle dark mode</li>
<li><kbd>Esc</kbd> Close modals</li>
</ul>
</div>
<div class="tab-content" id="version">
<h4>Current Version</h4>
<p class="version">v1.0.0 (November 2024)</p>
<h4>Latest Updates</h4>
<ul class="updates">
<li>β¨ Added dark mode support</li>
<li>π Improved search functionality</li>
<li>π± Enhanced mobile responsiveness</li>
<li>π¨ Added customizable themes</li>
<li>π Added copy to clipboard functionality</li>
<li>π Added advanced filtering system</li>
<li>βΉοΈ Added comprehensive help guide</li>
</ul>
<h4>Coming Soon</h4>
<ul class="upcoming">
<li>πΎ Save favorite prompts</li>
<li>π€ Export functionality</li>
<li>π Custom prompt creation</li>
<li>π Multi-language support</li>
<li>π API integration options</li>
</ul>
<h4>Release Notes</h4>
<div class="release-notes">
<p><strong>Version 1.0.0</strong> - Released November 3, 2024</p>
<ul>
<li>Initial release with core functionality</li>
<li>33+ prompt templates across multiple categories</li>
<li>Advanced search and filtering system</li>
<li>Responsive design for all devices</li>
<li>Dark mode support</li>
<li>Keyboard shortcuts</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="filters-container">
<div class="search-container">
<input type="text" id="searchInput" aria-label="Search prompts" placeholder="Search prompts..."
role="searchbox">
<button id="searchBtn">
<i class="fas fa-search"></i>
</button>
</div>
<div class="sort-container">
<select id="sortSelect">
<option value="titleAsc">Title (A-Z)</option>
<option value="titleDesc">Title (Z-A)</option>
<option value="categoryAsc">Category (A-Z)</option>
<option value="categoryDesc">Category (Z-A)</option>
</select>
</div>
<div class="view-container">
<button id="gridView" class="view-btn active">
<i class="fas fa-th-large"></i>
</button>
<button id="listView" class="view-btn">
<i class="fas fa-list"></i>
</button>
</div>
</div>
<div class="active-filters" id="activeFilters"></div>
</header>
<div id="promptsContainer" class="prompts-container grid-view"></div>
</main>
<script src="data/prompts.js"></script>
<script src="js/main.js"></script>
</body>
</html>