Add 3 files
Browse files- README.md +7 -5
- index.html +165 -19
- prompts.txt +1 -0
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
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: copybots
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: purple
|
5 |
+
colorTo: gray
|
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,165 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Copy Trading Bot - Automated Crypto Trading</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 |
+
.gradient-bg {
|
11 |
+
background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
|
12 |
+
}
|
13 |
+
.hero-section {
|
14 |
+
background: url('https://images.unsplash.com/photo-1639762681057-408e52192e55?q=80&w=2232&auto=format&fit=crop') no-repeat center center;
|
15 |
+
background-size: cover;
|
16 |
+
position: relative;
|
17 |
+
}
|
18 |
+
.hero-section::before {
|
19 |
+
content: '';
|
20 |
+
position: absolute;
|
21 |
+
top: 0;
|
22 |
+
left: 0;
|
23 |
+
width: 100%;
|
24 |
+
height: 100%;
|
25 |
+
background: rgba(0, 0, 0, 0.6);
|
26 |
+
}
|
27 |
+
.feature-card:hover {
|
28 |
+
transform: translateY(-5px);
|
29 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
30 |
+
}
|
31 |
+
.glow {
|
32 |
+
box-shadow: 0 0 15px rgba(167, 119, 227, 0.5);
|
33 |
+
}
|
34 |
+
</style>
|
35 |
+
</head>
|
36 |
+
<body class="font-sans antialiased text-gray-800">
|
37 |
+
<!-- Header -->
|
38 |
+
<header class="bg-white shadow-sm sticky top-0 z-50">
|
39 |
+
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
|
40 |
+
<div class="flex items-center">
|
41 |
+
<div class="text-2xl font-bold text-purple-600 mr-2">CRYPTO<span class="text-blue-500">HOPPER</span></div>
|
42 |
+
</div>
|
43 |
+
<nav class="hidden md:flex space-x-8">
|
44 |
+
<a href="https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T" class="text-gray-600 hover:text-purple-600 font-medium">Products</a>
|
45 |
+
<a href="https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T" class="text-gray-600 hover:text-purple-600 font-medium">Features</a>
|
46 |
+
<a href="https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T" class="text-gray-600 hover:text-purple-600 font-medium">Pricing</a>
|
47 |
+
<a href="https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T" class="text-gray-600 hover:text-purple-600 font-medium">Academy</a>
|
48 |
+
<a href="https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T" class="text-gray-600 hover:text-purple-600 font-medium">Blog</a>
|
49 |
+
</nav>
|
50 |
+
<div class="flex items-center space-x-4">
|
51 |
+
<a href="https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T" class="hidden md:block text-gray-600 hover:text-purple-600">Log In</a>
|
52 |
+
<a href="https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T" class="gradient-bg text-white px-6 py-2 rounded-md font-medium hover:opacity-90 transition">Sign Up Free</a>
|
53 |
+
<button class="md:hidden text-gray-600">
|
54 |
+
<i class="fas fa-bars text-xl"></i>
|
55 |
+
</button>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
</header>
|
59 |
+
|
60 |
+
<!-- Hero Section -->
|
61 |
+
<section class="hero-section text-white py-20">
|
62 |
+
<div class="container mx-auto px-4 relative z-10">
|
63 |
+
<div class="max-w-3xl mx-auto text-center">
|
64 |
+
<h1 class="text-4xl md:text-5xl font-bold mb-6">Copy Trading Bot</h1>
|
65 |
+
<p class="text-xl mb-8">Automatically copy the trades of the most successful traders in the market. No experience needed!</p>
|
66 |
+
<div class="flex flex-col sm:flex-row justify-center gap-4">
|
67 |
+
<a href="https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T" class="gradient-bg text-white px-8 py-4 rounded-md font-bold text-lg hover:opacity-90 transition">Start Copy Trading Now</a>
|
68 |
+
<a href="https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T" class="bg-white text-purple-600 px-8 py-4 rounded-md font-bold text-lg hover:bg-gray-100 transition">Watch Demo Video</a>
|
69 |
+
</div>
|
70 |
+
</div>
|
71 |
+
</div>
|
72 |
+
</section>
|
73 |
+
|
74 |
+
<!-- Stats Section -->
|
75 |
+
<section class="bg-gray-50 py-16">
|
76 |
+
<div class="container mx-auto px-4">
|
77 |
+
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
|
78 |
+
<div class="p-6">
|
79 |
+
<div class="text-4xl font-bold text-purple-600 mb-2">10,000+</div>
|
80 |
+
<div class="text-gray-600">Traders to Copy</div>
|
81 |
+
</div>
|
82 |
+
<div class="p-6">
|
83 |
+
<div class="text-4xl font-bold text-blue-500 mb-2">24/7</div>
|
84 |
+
<div class="text-gray-600">Automated Trading</div>
|
85 |
+
</div>
|
86 |
+
<div class="p-6">
|
87 |
+
<div class="text-4xl font-bold text-purple-600 mb-2">100+</div>
|
88 |
+
<div class="text-gray-600">Supported Exchanges</div>
|
89 |
+
</div>
|
90 |
+
<div class="p-6">
|
91 |
+
<div class="text-4xl font-bold text-blue-500 mb-2">1M+</div>
|
92 |
+
<div class="text-gray-600">Copied Trades</div>
|
93 |
+
</div>
|
94 |
+
</div>
|
95 |
+
</div>
|
96 |
+
</section>
|
97 |
+
|
98 |
+
<!-- How It Works -->
|
99 |
+
<section class="py-20 bg-white">
|
100 |
+
<div class="container mx-auto px-4">
|
101 |
+
<div class="text-center mb-16">
|
102 |
+
<h2 class="text-3xl md:text-4xl font-bold mb-4">How Copy Trading Works</h2>
|
103 |
+
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Follow the best traders automatically with just a few clicks</p>
|
104 |
+
</div>
|
105 |
+
|
106 |
+
<div class="grid md:grid-cols-3 gap-10">
|
107 |
+
<div class="feature-card bg-white p-8 rounded-xl border border-gray-200 transition duration-300">
|
108 |
+
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-6">1</div>
|
109 |
+
<h3 class="text-xl font-bold mb-4">Choose a Master Trader</h3>
|
110 |
+
<p class="text-gray-600">Browse our leaderboard of verified profitable traders with transparent performance metrics.</p>
|
111 |
+
</div>
|
112 |
+
<div class="feature-card bg-white p-8 rounded-xl border border-gray-200 transition duration-300">
|
113 |
+
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-6">2</div>
|
114 |
+
<h3 class="text-xl font-bold mb-4">Configure Your Settings</h3>
|
115 |
+
<p class="text-gray-600">Set your risk parameters, investment amount, and which signals to follow.</p>
|
116 |
+
</div>
|
117 |
+
<div class="feature-card bg-white p-8 rounded-xl border border-gray-200 transition duration-300">
|
118 |
+
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center text-white text-2xl mb-6">3</div>
|
119 |
+
<h3 class="text-xl font-bold mb-4">Start Copying Automatically</h3>
|
120 |
+
<p class="text-gray-600">Our bot will execute the same trades in your account with your configured settings.</p>
|
121 |
+
</div>
|
122 |
+
</div>
|
123 |
+
</div>
|
124 |
+
</section>
|
125 |
+
|
126 |
+
<!-- Features Section -->
|
127 |
+
<section class="py-20 bg-gray-50">
|
128 |
+
<div class="container mx-auto px-4">
|
129 |
+
<div class="text-center mb-16">
|
130 |
+
<h2 class="text-3xl md:text-4xl font-bold mb-4">Powerful Copy Trading Features</h2>
|
131 |
+
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Everything you need to copy trade like a pro</p>
|
132 |
+
</div>
|
133 |
+
|
134 |
+
<div class="grid md:grid-cols-2 gap-10">
|
135 |
+
<div class="bg-white p-8 rounded-xl border border-gray-200">
|
136 |
+
<div class="flex items-start mb-6">
|
137 |
+
<div class="gradient-bg p-3 rounded-lg text-white mr-4">
|
138 |
+
<i class="fas fa-chart-line text-xl"></i>
|
139 |
+
</div>
|
140 |
+
<div>
|
141 |
+
<h3 class="text-xl font-bold mb-2">Performance Analytics</h3>
|
142 |
+
<p class="text-gray-600">View detailed statistics on each trader's performance including win rate, average profit, and risk level.</p>
|
143 |
+
</div>
|
144 |
+
</div>
|
145 |
+
</div>
|
146 |
+
<div class="bg-white p-8 rounded-xl border border-gray-200">
|
147 |
+
<div class="flex items-start mb-6">
|
148 |
+
<div class="gradient-bg p-3 rounded-lg text-white mr-4">
|
149 |
+
<i class="fas fa-sliders-h text-xl"></i>
|
150 |
+
</div>
|
151 |
+
<div>
|
152 |
+
<h3 class="text-xl font-bold mb-2">Customizable Risk Settings</h3>
|
153 |
+
<p class="text-gray-600">Adjust position sizes, set stop losses, and configure your risk tolerance for each trader you follow.</p>
|
154 |
+
</div>
|
155 |
+
</div>
|
156 |
+
</div>
|
157 |
+
<div class="bg-white p-8 rounded-xl border border-gray-200">
|
158 |
+
<div class="flex items-start mb-6">
|
159 |
+
<div class="gradient-bg p-3 rounded-lg text-white mr-4">
|
160 |
+
<i class="fas fa-bell text-xl"></i>
|
161 |
+
</div>
|
162 |
+
<div>
|
163 |
+
<h3 class="text-xl font-bold mb-2">Real-time Notifications</h3>
|
164 |
+
|
165 |
+
</html>
|
prompts.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Build a webside link to https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T, copy this website "https://www.cryptohopper.com/features/copy-bot" and link all clicks to this webside https://youtu.be/1ZZtqDB9Fno?si=Koq_hI2Vo8knkZ4T
|