GVK1 commited on
Commit
9bab104
·
verified ·
1 Parent(s): 8ea7a64

- Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +206 -18
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Promptvalut
3
- emoji:
4
- colorFrom: yellow
5
- colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: promptvalut
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,207 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>PromptVault - AI Image Generation Prompts</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <style>
14
+ .gradient-bg {
15
+ background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
16
+ }
17
+ .category-card {
18
+ transition: all 0.3s ease;
19
+ transform: translateY(0);
20
+ }
21
+ .category-card:hover {
22
+ transform: translateY(-5px);
23
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
24
+ }
25
+ .prompt-card {
26
+ background: rgba(255, 255, 255, 0.9);
27
+ backdrop-filter: blur(10px);
28
+ }
29
+ </style>
30
+ </head>
31
+ <body class="min-h-screen bg-gray-50">
32
+ <!-- Hero Section -->
33
+ <div class="gradient-bg text-white py-20 px-4 sm:px-6 lg:px-8">
34
+ <div class="max-w-7xl mx-auto text-center" data-aos="fade-up">
35
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">PromptVault</h1>
36
+ <p class="text-xl md:text-2xl mb-8">Unlock the power of AI image generation with curated prompts</p>
37
+ <div class="flex justify-center">
38
+ <button class="bg-white text-purple-600 px-8 py-3 rounded-full font-semibold shadow-lg hover:bg-gray-100 transition duration-300 mr-4">
39
+ Browse All Prompts
40
+ </button>
41
+ <button class="border-2 border-white text-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-purple-600 transition duration-300">
42
+ <i data-feather="download" class="inline mr-2"></i> Get Started
43
+ </button>
44
+ </div>
45
+ </div>
46
+ </div>
47
+
48
+ <!-- Categories Section -->
49
+ <div class="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:px-8">
50
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800" data-aos="fade-up">Select a Category</h2>
51
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6">
52
+ <!-- Men Category -->
53
+ <div class="category-card bg-white rounded-xl shadow-md overflow-hidden cursor-pointer" data-aos="fade-up" data-aos-delay="100">
54
+ <div class="h-40 bg-blue-100 flex items-center justify-center">
55
+ <i data-feather="user" class="w-16 h-16 text-blue-600"></i>
56
+ </div>
57
+ <div class="p-6 text-center">
58
+ <h3 class="text-xl font-semibold text-gray-800">Men</h3>
59
+ <p class="text-gray-600 mt-2">120+ prompts</p>
60
+ </div>
61
+ </div>
62
+
63
+ <!-- Women Category -->
64
+ <div class="category-card bg-white rounded-xl shadow-md overflow-hidden cursor-pointer" data-aos="fade-up" data-aos-delay="200">
65
+ <div class="h-40 bg-pink-100 flex items-center justify-center">
66
+ <i data-feather="user" class="w-16 h-16 text-pink-600"></i>
67
+ </div>
68
+ <div class="p-6 text-center">
69
+ <h3 class="text-xl font-semibold text-gray-800">Women</h3>
70
+ <p class="text-gray-600 mt-2">150+ prompts</p>
71
+ </div>
72
+ </div>
73
+
74
+ <!-- Couple Category -->
75
+ <div class="category-card bg-white rounded-xl shadow-md overflow-hidden cursor-pointer" data-aos="fade-up" data-aos-delay="300">
76
+ <div class="h-40 bg-purple-100 flex items-center justify-center">
77
+ <i data-feather="users" class="w-16 h-16 text-purple-600"></i>
78
+ </div>
79
+ <div class="p-6 text-center">
80
+ <h3 class="text-xl font-semibold text-gray-800">Couple</h3>
81
+ <p class="text-gray-600 mt-2">80+ prompts</p>
82
+ </div>
83
+ </div>
84
+
85
+ <!-- Kids Category -->
86
+ <div class="category-card bg-white rounded-xl shadow-md overflow-hidden cursor-pointer" data-aos="fade-up" data-aos-delay="400">
87
+ <div class="h-40 bg-yellow-100 flex items-center justify-center">
88
+ <i data-feather="smile" class="w-16 h-16 text-yellow-600"></i>
89
+ </div>
90
+ <div class="p-6 text-center">
91
+ <h3 class="text-xl font-semibold text-gray-800">Kids</h3>
92
+ <p class="text-gray-600 mt-2">60+ prompts</p>
93
+ </div>
94
+ </div>
95
+ </div>
96
+ </div>
97
+
98
+ <!-- Featured Prompts -->
99
+ <div class="gradient-bg py-16 px-4 sm:px-6 lg:px-8">
100
+ <div class="max-w-7xl mx-auto">
101
+ <h2 class="text-3xl font-bold text-center mb-12 text-white" data-aos="fade-up">Featured Prompts</h2>
102
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
103
+ <!-- Prompt 1 -->
104
+ <div class="prompt-card rounded-xl p-6 shadow-lg" data-aos="fade-up" data-aos-delay="100">
105
+ <div class="flex items-center mb-4">
106
+ <div class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center mr-3">
107
+ <i data-feather="image" class="text-purple-600"></i>
108
+ </div>
109
+ <h3 class="font-semibold text-gray-800">Portrait Photography</h3>
110
+ </div>
111
+ <p class="text-gray-600 mb-4">"A stunning portrait of a young woman with freckles, soft natural lighting, shallow depth of field, shot on 85mm lens, cinematic style"</p>
112
+ <button class="text-purple-600 font-medium flex items-center">
113
+ Copy Prompt <i data-feather="copy" class="ml-2 w-4 h-4"></i>
114
+ </button>
115
+ </div>
116
+
117
+ <!-- Prompt 2 -->
118
+ <div class="prompt-card rounded-xl p-6 shadow-lg" data-aos="fade-up" data-aos-delay="200">
119
+ <div class="flex items-center mb-4">
120
+ <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center mr-3">
121
+ <i data-feather="image" class="text-blue-600"></i>
122
+ </div>
123
+ <h3 class="font-semibold text-gray-800">Fantasy Art</h3>
124
+ </div>
125
+ <p class="text-gray-600 mb-4">"A majestic elven warrior with glowing blue eyes, wearing intricate silver armor, standing in an ancient forest, digital painting style by Greg Rutkowski"</p>
126
+ <button class="text-purple-600 font-medium flex items-center">
127
+ Copy Prompt <i data-feather="copy" class="ml-2 w-4 h-4"></i>
128
+ </button>
129
+ </div>
130
+
131
+ <!-- Prompt 3 -->
132
+ <div class="prompt-card rounded-xl p-6 shadow-lg" data-aos="fade-up" data-aos-delay="300">
133
+ <div class="flex items-center mb-4">
134
+ <div class="w-10 h-10 rounded-full bg-pink-100 flex items-center justify-center mr-3">
135
+ <i data-feather="image" class="text-pink-600"></i>
136
+ </div>
137
+ <h3 class="font-semibold text-gray-800">Product Photography</h3>
138
+ </div>
139
+ <p class="text-gray-600 mb-4">"A minimalist product shot of a ceramic coffee mug on a wooden table with morning sunlight, soft shadows, clean background, commercial photography style"</p>
140
+ <button class="text-purple-600 font-medium flex items-center">
141
+ Copy Prompt <i data-feather="copy" class="ml-2 w-4 h-4"></i>
142
+ </button>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+
148
+ <!-- CTA Section -->
149
+ <div class="max-w-7xl mx-auto py-20 px-4 sm:px-6 lg:px-8 text-center">
150
+ <h2 class="text-3xl font-bold text-gray-800 mb-6" data-aos="fade-up">Ready to explore more prompts?</h2>
151
+ <p class="text-xl text-gray-600 mb-8 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="100">
152
+ Join thousands of creators using PromptVault to enhance their AI image generation workflow.
153
+ </p>
154
+ <button class="gradient-bg text-white px-8 py-4 rounded-full font-semibold shadow-lg hover:opacity-90 transition duration-300" data-aos="fade-up" data-aos-delay="200">
155
+ Browse All Prompts <i data-feather="arrow-right" class="inline ml-2"></i>
156
+ </button>
157
+ </div>
158
+
159
+ <!-- Footer -->
160
+ <footer class="bg-gray-800 text-white py-12 px-4 sm:px-6 lg:px-8">
161
+ <div class="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-4 gap-8">
162
+ <div>
163
+ <h3 class="text-xl font-bold mb-4">PromptVault</h3>
164
+ <p class="text-gray-400">The ultimate collection of AI image generation prompts for creators.</p>
165
+ </div>
166
+ <div>
167
+ <h4 class="font-semibold mb-4">Categories</h4>
168
+ <ul class="space-y-2">
169
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Men</a></li>
170
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Women</a></li>
171
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Couple</a></li>
172
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Kids</a></li>
173
+ </ul>
174
+ </div>
175
+ <div>
176
+ <h4 class="font-semibold mb-4">Resources</h4>
177
+ <ul class="space-y-2">
178
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
179
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Tutorials</a></li>
180
+ <li><a href="#" class="text-gray-400 hover:text-white transition">API</a></li>
181
+ </ul>
182
+ </div>
183
+ <div>
184
+ <h4 class="font-semibold mb-4">Connect</h4>
185
+ <div class="flex space-x-4">
186
+ <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="twitter"></i></a>
187
+ <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="instagram"></i></a>
188
+ <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="github"></i></a>
189
+ <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="discord"></i></a>
190
+ </div>
191
+ </div>
192
+ </div>
193
+ <div class="max-w-7xl mx-auto border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
194
+ <p>© 2023 PromptVault. All rights reserved.</p>
195
+ </div>
196
+ </footer>
197
+
198
+ <script>
199
+ AOS.init({
200
+ duration: 800,
201
+ easing: 'ease-in-out',
202
+ once: true
203
+ });
204
+ feather.replace();
205
+ </script>
206
+ </body>
207
  </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ https://gemini-prompts.vercel.app/ help me to build this clone
2
+ https://gemini-prompts.vercel.app/ help me to build this clone