timoon811 commited on
Commit
041c2d8
·
verified ·
1 Parent(s): d76fcc3

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +139 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Kfdkkss
3
- emoji: 🏃
4
- colorFrom: green
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: kfdkkss
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: red
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,139 @@
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>Change Your Life | High Daily Earnings</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
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
11
+ body {
12
+ font-family: 'Poppins', sans-serif;
13
+ background-color: #f8fafc;
14
+ }
15
+ .hero-gradient {
16
+ background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
17
+ }
18
+ .pulse-animation {
19
+ animation: pulse 2s infinite;
20
+ }
21
+ @keyframes pulse {
22
+ 0% { transform: scale(1); }
23
+ 50% { transform: scale(1.05); }
24
+ 100% { transform: scale(1); }
25
+ }
26
+ </style>
27
+ </head>
28
+ <body class="text-gray-800">
29
+ <!-- Hero Section -->
30
+ <section class="hero-gradient text-white py-16 md:py-24 px-4">
31
+ <div class="max-w-4xl mx-auto text-center">
32
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Change Your Life for the Better Today!</h1>
33
+ <p class="text-xl md:text-2xl mb-8">Dream job with daily payments from ₹14,500 per day!</p>
34
+
35
+ <div class="bg-white rounded-lg shadow-xl p-6 max-w-2xl mx-auto mb-10 text-gray-800">
36
+ <div class="flex flex-wrap justify-center gap-4 mb-4">
37
+ <div class="flex items-center bg-orange-50 px-4 py-2 rounded-full">
38
+ <i class="fas fa-rupee-sign text-orange-500 mr-2"></i>
39
+ <span>Payments from ₹14,500/day</span>
40
+ </div>
41
+ <div class="flex items-center bg-orange-50 px-4 py-2 rounded-full">
42
+ <i class="fas fa-tasks text-orange-500 mr-2"></i>
43
+ <span>Simple tasks</span>
44
+ </div>
45
+ <div class="flex items-center bg-orange-50 px-4 py-2 rounded-full">
46
+ <i class="fas fa-clock text-orange-500 mr-2"></i>
47
+ <span>Flexible schedule</span>
48
+ </div>
49
+ </div>
50
+ <p class="mb-4">Join thousands of people who have already changed their lives!</p>
51
+ <a href="https://t.me/yourchannel" class="inline-block pulse-animation bg-orange-500 hover:bg-orange-600 text-white font-bold py-4 px-8 rounded-full text-lg transition-all duration-300">
52
+ <i class="fab fa-telegram mr-2"></i> Join Telegram
53
+ </a>
54
+ </div>
55
+
56
+ <div class="flex justify-center space-x-4">
57
+ <div class="flex items-center">
58
+ <i class="fas fa-check-circle text-green-300 mr-2"></i>
59
+ <span>No experience needed</span>
60
+ </div>
61
+ <div class="flex items-center">
62
+ <i class="fas fa-check-circle text-green-300 mr-2"></i>
63
+ <span>Available to everyone</span>
64
+ </div>
65
+ </div>
66
+ </div>
67
+ </section>
68
+
69
+ <!-- Benefits Section -->
70
+ <section class="py-16 px-4 bg-white">
71
+ <div class="max-w-4xl mx-auto">
72
+ <h2 class="text-3xl font-bold text-center mb-12">Why Choose Us?</h2>
73
+
74
+ <div class="grid md:grid-cols-2 gap-8">
75
+ <div class="bg-orange-50 p-6 rounded-xl">
76
+ <div class="flex items-center mb-4">
77
+ <div class="bg-orange-100 p-3 rounded-full mr-4">
78
+ <i class="fas fa-wallet text-orange-500 text-xl"></i>
79
+ </div>
80
+ <h3 class="text-xl font-semibold">Daily payments</h3>
81
+ </div>
82
+ <p>Get your money every day without delays. Minimum withdrawal amount only ₹500.</p>
83
+ </div>
84
+
85
+ <div class="bg-orange-50 p-6 rounded-xl">
86
+ <div class="flex items-center mb-4">
87
+ <div class="bg-orange-100 p-3 rounded-full mr-4">
88
+ <i class="fas fa-mobile-alt text-orange-500 text-xl"></i>
89
+ </div>
90
+ <h3 class="text-xl font-semibold">Work from home</h3>
91
+ </div>
92
+ <p>All tasks can be completed from your smartphone or computer at your convenience.</p>
93
+ </div>
94
+
95
+ <div class="bg-orange-50 p-6 rounded-xl">
96
+ <div class="flex items-center mb-4">
97
+ <div class="bg-orange-100 p-3 rounded-full mr-4">
98
+ <i class="fas fa-graduation-cap text-orange-500 text-xl"></i>
99
+ </div>
100
+ <h3 class="text-xl font-semibold">Training</h3>
101
+ </div>
102
+ <p>We provide complete training and 24/7 support for all our members.</p>
103
+ </div>
104
+
105
+ <div class="bg-orange-50 p-6 rounded-xl">
106
+ <div class="flex items-center mb-4">
107
+ <div class="bg-orange-100 p-3 rounded-full mr-4">
108
+ <i class="fas fa-chart-line text-orange-500 text-xl"></i>
109
+ </div>
110
+ <h3 class="text-xl font-semibold">Income growth</h3>
111
+ </div>
112
+ <p>Your income will grow every day as you complete more tasks.</p>
113
+ </div>
114
+ </div>
115
+
116
+ <div class="text-center mt-12">
117
+ <a href="https://t.me/yourchannel" class="inline-block bg-orange-500 hover:bg-orange-600 text-white font-bold py-4 px-8 rounded-full text-lg transition-all duration-300">
118
+ <i class="fab fa-telegram mr-2"></i> Start earning now
119
+ </a>
120
+ </div>
121
+ </div>
122
+ </section>
123
+
124
+ <script>
125
+ // Simple animation for the CTA button
126
+ document.addEventListener('DOMContentLoaded', function() {
127
+ const ctaButton = document.querySelector('.pulse-animation');
128
+
129
+ ctaButton.addEventListener('mouseenter', function() {
130
+ this.classList.remove('pulse-animation');
131
+ });
132
+
133
+ ctaButton.addEventListener('mouseleave', function() {
134
+ this.classList.add('pulse-animation');
135
+ });
136
+ });
137
+ </script>
138
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=timoon811/kfdkkss" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
139
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ Сделай одностраничный лендинг для индийской аудитории на вот эту тему "Ну типа измени свою жизнь к лучшему, работа мечты, ежедневные высокие выплаты, выплаты от 14500 рупий за день, простые задания и тд" - максимум 2 блока и сразу призыв перейти в телеграм в виде кнопки!
2
+ Убери текста - Без вложений и переведи весь лендинг на английский язык