docto41 commited on
Commit
c7ec9b0
·
verified ·
1 Parent(s): ae9e9bb

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +218 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Mega Maret
3
- emoji: 😻
4
- colorFrom: blue
5
  colorTo: blue
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: mega-maret
3
+ emoji: 🐳
4
+ colorFrom: purple
5
  colorTo: blue
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,218 @@
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="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>MegaMarket AI - 9,850,000+ produits numériques</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @keyframes float {
11
+ 0%, 100% { transform: translateY(0); }
12
+ 50% { transform: translateY(-10px); }
13
+ }
14
+ .floating {
15
+ animation: float 6s ease-in-out infinite;
16
+ }
17
+ .gradient-text {
18
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
19
+ -webkit-background-clip: text;
20
+ background-clip: text;
21
+ color: transparent;
22
+ }
23
+ .glass-effect {
24
+ background: rgba(255, 255, 255, 0.1);
25
+ backdrop-filter: blur(10px);
26
+ -webkit-backdrop-filter: blur(10px);
27
+ border: 1px solid rgba(255, 255, 255, 0.2);
28
+ }
29
+ .product-card:hover {
30
+ transform: translateY(-5px);
31
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
32
+ }
33
+ .stats-grid {
34
+ display: grid;
35
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
36
+ gap: 1rem;
37
+ }
38
+ .blinking {
39
+ animation: blink 2s infinite;
40
+ }
41
+ @keyframes blink {
42
+ 0%, 100% { opacity: 1; }
43
+ 50% { opacity: 0.7; }
44
+ }
45
+ .category-chip {
46
+ transition: all 0.3s ease;
47
+ }
48
+ .category-chip:hover {
49
+ transform: scale(1.05);
50
+ background-color: #3b82f6 !important;
51
+ }
52
+ </style>
53
+ </head>
54
+ <body class="bg-gray-900 text-white min-h-screen font-sans">
55
+ <!-- Navigation -->
56
+ <nav class="glass-effect fixed w-full z-50">
57
+ <div class="max-w-8xl mx-auto px-4 sm:px-6 lg:px-8">
58
+ <div class="flex items-center justify-between h-16">
59
+ <div class="flex items-center">
60
+ <div class="flex-shrink-0">
61
+ <span class="text-2xl font-bold gradient-text">MegaMarket AI</span>
62
+ </div>
63
+ <div class="hidden lg:block ml-10">
64
+ <div class="flex space-x-4">
65
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium bg-blue-600 text-white">Accueil</a>
66
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-800 hover:text-white">Explorer</a>
67
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-800 hover:text-white">Catégories</a>
68
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-800 hover:text-white">Créateurs IA</a>
69
+ <a href="#" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-800 hover:text-white">Abonnements</a>
70
+ </div>
71
+ </div>
72
+ </div>
73
+ <div class="hidden lg:block">
74
+ <div class="ml-4 flex items-center space-x-4">
75
+ <div class="relative">
76
+ <input type="text" placeholder="Rechercher parmi 9.8M+ produits..." class="pl-10 pr-4 py-2 rounded-full bg-gray-800 text-white text-sm w-64 focus:outline-none focus:ring-2 focus:ring-blue-500">
77
+ <i class="fas fa-search absolute left-3 top-2.5 text-gray-400"></i>
78
+ </div>
79
+ <button class="px-4 py-2 rounded-md text-sm font-medium bg-gradient-to-r from-blue-500 to-purple-600 text-white hover:from-blue-600 hover:to-purple-700">
80
+ Connexion
81
+ </button>
82
+ </div>
83
+ </div>
84
+ <div class="-mr-2 flex lg:hidden">
85
+ <button onclick="toggleMenu()" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
86
+ <i class="fas fa-bars h-6 w-6"></i>
87
+ </button>
88
+ </div>
89
+ </div>
90
+ </div>
91
+
92
+ <!-- Mobile menu -->
93
+ <div id="mobileMenu" class="hidden lg:hidden bg-gray-900">
94
+ <div class="px-2 pt-2 pb-3 space-y-1">
95
+ <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white bg-gray-800">Accueil</a>
96
+ <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Explorer</a>
97
+ <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Catégories</a>
98
+ <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Créateurs IA</a>
99
+ <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-300 hover:text-white hover:bg-gray-700">Abonnements</a>
100
+ <div class="pt-4 pb-3 border-t border-gray-800">
101
+ <div class="flex items-center px-5">
102
+ <button class="w-full px-4 py-2 rounded-md text-sm font-medium bg-gradient-to-r from-blue-500 to-purple-600 text-white">
103
+ Connexion
104
+ </button>
105
+ </div>
106
+ </div>
107
+ </div>
108
+ </div>
109
+ </nav>
110
+
111
+ <!-- Hero Section -->
112
+ <section class="pt-32 pb-20 md:pt-40 md:pb-32 bg-gradient-to-b from-gray-900 to-gray-800">
113
+ <div class="max-w-8xl mx-auto px-4 sm:px-6 lg:px-8">
114
+ <div class="lg:grid lg:grid-cols-12 lg:gap-12">
115
+ <div class="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-7 lg:text-left">
116
+ <div class="flex items-center space-x-2 mb-4">
117
+ <span class="px-3 py-1 rounded-full text-xs font-semibold bg-blue-900 text-blue-100">NOUVEAU</span>
118
+ <span class="text-sm text-gray-300">+12,450 produits ajoutés aujourd'hui</span>
119
+ </div>
120
+ <h1 class="text-4xl tracking-tight font-extrabold sm:text-5xl md:text-6xl">
121
+ <span class="block">La plus grande marketplace</span>
122
+ <span class="block gradient-text">de produits numériques IA</span>
123
+ </h1>
124
+ <p class="mt-3 text-base text-gray-300 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
125
+ Accédez à plus de 9,850,000 produits générés par nos 80,555 intelligences artificielles spécialisées. Téléchargez gratuitement après inscription et abonnement.
126
+ </p>
127
+ <div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0">
128
+ <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-3">
129
+ <button class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 md:py-4 md:text-lg md:px-10 transition-all duration-300 transform hover:scale-105">
130
+ S'inscrire maintenant
131
+ </button>
132
+ <button class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-600 bg-white hover:bg-gray-100 md:py-4 md:text-lg md:px-10 transition-all duration-300 transform hover:scale-105">
133
+ Voir les abonnements
134
+ </button>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ <div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-5 lg:flex lg:items-center">
139
+ <div class="relative w-full rounded-xl overflow-hidden floating">
140
+ <div class="glass-effect rounded-lg overflow-hidden">
141
+ <img class="w-full" src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Produits numériques IA">
142
+ <div class="absolute inset-0 bg-gradient-to-t from-gray-900 to-transparent opacity-70"></div>
143
+ <div class="absolute bottom-0 left-0 right-0 p-6">
144
+ <div class="flex justify-between items-center">
145
+ <div>
146
+ <h3 class="text-xl font-bold text-white">Pack UI/UX Premium</h3>
147
+ <p class="mt-1 text-gray-200">Généré par DesignMaster AI</p>
148
+ </div>
149
+ <div class="bg-blue-600 text-white px-3 py-1 rounded-full text-sm font-medium blinking">
150
+ GRATUIT
151
+ </div>
152
+ </div>
153
+ </div>
154
+ </div>
155
+ </div>
156
+ </div>
157
+ </div>
158
+ </div>
159
+ </section>
160
+
161
+ <!-- Stats Section -->
162
+ <section class="py-12 bg-gray-800">
163
+ <div class="max-w-8xl mx-auto px-4 sm:px-6 lg:px-8">
164
+ <div class="stats-grid">
165
+ <div class="glass-effect p-6 rounded-xl text-center">
166
+ <div class="text-4xl font-bold gradient-text">9,850,000+</div>
167
+ <div class="mt-2 text-gray-300">Produits numériques</div>
168
+ </div>
169
+ <div class="glass-effect p-6 rounded-xl text-center">
170
+ <div class="text-4xl font-bold gradient-text">80,555</div>
171
+ <div class="mt-2 text-gray-300">IA spécialisées</div>
172
+ </div>
173
+ <div class="glass-effect p-6 rounded-xl text-center">
174
+ <div class="text-4xl font-bold gradient-text">1,200+</div>
175
+ <div class="mt-2 text-gray-300">Catégories</div>
176
+ </div>
177
+ <div class="glass-effect p-6 rounded-xl text-center">
178
+ <div class="text-4xl font-bold gradient-text">4.2M</div>
179
+ <div class="mt-2 text-gray-300">Utilisateurs</div>
180
+ </div>
181
+ </div>
182
+ </div>
183
+ </section>
184
+
185
+ <!-- Categories Section -->
186
+ <section class="py-20 bg-gray-900">
187
+ <div class="max-w-8xl mx-auto px-4 sm:px-6 lg:px-8">
188
+ <div class="text-center mb-12">
189
+ <h2 class="text-3xl font-bold text-white">Parcourir par catégories</h2>
190
+ <p class="mt-4 max-w-2xl text-xl text-gray-300 mx-auto">
191
+ Découvrez nos principales catégories de produits générés par IA
192
+ </p>
193
+ </div>
194
+
195
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4">
196
+ <a href="#" class="category-chip bg-blue-900 bg-opacity-40 p-4 rounded-lg flex flex-col items-center hover:shadow-lg">
197
+ <i class="fas fa-paint-brush text-3xl text-blue-400 mb-2"></i>
198
+ <span class="font-medium">Design</span>
199
+ <span class="text-xs text-gray-400 mt-1">1.2M produits</span>
200
+ </a>
201
+ <a href="#" class="category-chip bg-purple-900 bg-opacity-40 p-4 rounded-lg flex flex-col items-center hover:shadow-lg">
202
+ <i class="fas fa-code text-3xl text-purple-400 mb-2"></i>
203
+ <span class="font-medium">Code</span>
204
+ <span class="text-xs text-gray-400 mt-1">850K produits</span>
205
+ </a>
206
+ <a href="#" class="category-chip bg-pink-900 bg-opacity-40 p-4 rounded-lg flex flex-col items-center hover:shadow-lg">
207
+ <i class="fas fa-music text-3xl text-pink-400 mb-2"></i>
208
+ <span class="font-medium">Musique</span>
209
+ <span class="text-xs text-gray-400 mt-1">620K produits</span>
210
+ </a>
211
+ <a href="#" class="category-chip bg-green-900 bg-opacity-40 p-4 rounded-lg flex flex-col items-center hover:shadow-lg">
212
+ <i class="fas fa-image text-3xl text-green-400 mb-2"></i>
213
+ <span class="font-medium">Images</span>
214
+ <span class="text-xs text-gray-400 mt-1">3.1M produits</span>
215
+ </a>
216
+ <a href="#" class="category-chip bg-yellow-900 bg-opacity-40 p-4 rounded-lg flex flex-col items-center hover:shadow-lg">
217
+ <i class="fas fa-video text
218
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ deepsite
2
+ creer le plus gigantesque market place avec plus de 9850000 produit numérique téléchargeable creer part nos assistant de 80555 INTELIGENCES ARTIFICIEL , produit gratuite avec obligation de sinscrire et de souscrire au abonnement afin pouvoir télécharger leur produit