asmadeyi commited on
Commit
af5cf45
·
verified ·
1 Parent(s): 5f028d3

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +179 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Test
3
- emoji: 😻
4
- colorFrom: yellow
5
- colorTo: yellow
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: test
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: green
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,179 @@
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>AgentoForce: Your AI Employees for Business Tasks</title>
7
+ <meta name="description" content="A revolutionary platform where AI agents autonomously complete tasks and deliver measurable results. Pay for results, not software access.">
8
+ <link rel="canonical" href="https://agentoforce.com">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
11
+ <style>
12
+ @keyframes float {
13
+ 0% { transform: translateY(0px); }
14
+ 50% { transform: translateY(-15px); }
15
+ 100% { transform: translateY(0px); }
16
+ }
17
+ .floating {
18
+ animation: float 6s ease-in-out infinite;
19
+ }
20
+ .hero-overlay {
21
+ background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
22
+ }
23
+ .fade-in {
24
+ animation: fadeIn 1.5s ease-in-out;
25
+ }
26
+ @keyframes fadeIn {
27
+ from { opacity: 0; transform: translateY(20px); }
28
+ to { opacity: 1; transform: translateY(0); }
29
+ }
30
+ .step-card:hover {
31
+ transform: translateY(-10px);
32
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
33
+ }
34
+ .step-card {
35
+ transition: all 0.3s ease;
36
+ }
37
+ </style>
38
+ </head>
39
+ <body class="font-sans antialiased text-gray-800">
40
+ <!-- Header -->
41
+ <header class="fixed w-full bg-white shadow-sm z-50">
42
+ <div class="container mx-auto px-6 py-4">
43
+ <div class="flex items-center justify-between">
44
+ <div class="flex items-center">
45
+ <svg class="w-10 h-10 text-blue-600" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
46
+ <path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
47
+ <path d="M12 8V16" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
48
+ <path d="M8 12H16" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
49
+ </svg>
50
+ <span class="ml-3 text-xl font-bold text-gray-800">AgentoForce</span>
51
+ </div>
52
+ <nav class="hidden md:flex space-x-8">
53
+ <a href="#features" class="text-gray-600 hover:text-blue-600 transition">Features</a>
54
+ <a href="#how-it-works" class="text-gray-600 hover:text-blue-600 transition">How It Works</a>
55
+ <a href="#testimonials" class="text-gray-600 hover:text-blue-600 transition">Testimonials</a>
56
+ <a href="#pricing" class="text-gray-600 hover:text-blue-600 transition">Pricing</a>
57
+ </nav>
58
+ <div class="flex items-center space-x-4">
59
+ <a href="#" class="hidden md:inline-block px-4 py-2 text-blue-600 border border-blue-600 rounded-md hover:bg-blue-50 transition">Login</a>
60
+ <a href="#contact" class="px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 transition">Connect Now</a>
61
+ </div>
62
+ <button class="md:hidden text-gray-600 focus:outline-none">
63
+ <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
64
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
65
+ </svg>
66
+ </button>
67
+ </div>
68
+ </div>
69
+ </header>
70
+
71
+ <!-- Hero Section -->
72
+ <section class="relative h-screen flex items-center justify-center bg-gray-900 overflow-hidden">
73
+ <div class="absolute inset-0 hero-overlay z-10"></div>
74
+ <img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80"
75
+ alt="AI at work"
76
+ class="absolute inset-0 w-full h-full object-cover"
77
+ loading="lazy">
78
+
79
+ <div class="container mx-auto px-6 relative z-20 text-center fade-in">
80
+ <div class="max-w-3xl mx-auto">
81
+ <h1 class="text-4xl md:text-6xl font-bold text-white mb-6">AgentoForce: Your AI Employees for Business Tasks</h1>
82
+ <p class="text-xl md:text-2xl text-gray-300 mb-10">A revolutionary platform where AI agents autonomously complete tasks and deliver measurable results. Pay for results, not software access.</p>
83
+ <div class="flex flex-col sm:flex-row justify-center items-center space-y-4 sm:space-y-0 sm:space-x-6">
84
+ <a href="#contact" class="px-8 py-4 bg-blue-600 hover:bg-blue-700 text-white font-semibold rounded-lg shadow-lg transition duration-300 transform hover:scale-105">Connect Now</a>
85
+ <a href="#how-it-works" class="px-8 py-4 bg-transparent border-2 border-white text-white font-semibold rounded-lg hover:bg-white hover:text-gray-900 transition duration-300">Learn More</a>
86
+ </div>
87
+ <p class="mt-6 text-gray-300 text-sm">14 days free - No credit card required</p>
88
+ </div>
89
+ </div>
90
+
91
+ <!-- Floating AI elements -->
92
+ <div class="absolute top-1/4 left-1/4 w-12 h-12 bg-blue-500 rounded-full opacity-20 floating" style="animation-delay: 0s;"></div>
93
+ <div class="absolute top-1/3 right-1/4 w-8 h-8 bg-purple-500 rounded-full opacity-20 floating" style="animation-delay: 1s;"></div>
94
+ <div class="absolute bottom-1/4 left-1/3 w-10 h-10 bg-green-500 rounded-full opacity-20 floating" style="animation-delay: 2s;"></div>
95
+ </section>
96
+
97
+ <!-- Trusted By Section -->
98
+ <section class="py-12 bg-gray-50">
99
+ <div class="container mx-auto px-6">
100
+ <p class="text-center text-gray-500 mb-8">Trusted by innovative companies worldwide</p>
101
+ <div class="flex flex-wrap justify-center items-center gap-12">
102
+ <img src="https://via.placeholder.com/150x60?text=TechCorp" alt="TechCorp" class="h-8 opacity-60 hover:opacity-100 transition">
103
+ <img src="https://via.placeholder.com/150x60?text=DataSystems" alt="DataSystems" class="h-8 opacity-60 hover:opacity-100 transition">
104
+ <img src="https://via.placeholder.com/150x60?text=InnovateCo" alt="InnovateCo" class="h-10 opacity-60 hover:opacity-100 transition">
105
+ <img src="https://via.placeholder.com/150x60?text=FutureLabs" alt="FutureLabs" class="h-12 opacity-60 hover:opacity-100 transition">
106
+ <img src="https://via.placeholder.com/150x60?text=DigitalX" alt="DigitalX" class="h-8 opacity-60 hover:opacity-100 transition">
107
+ </div>
108
+ </div>
109
+ </section>
110
+
111
+ <!-- Features Section -->
112
+ <section id="features" class="py-20 bg-white">
113
+ <div class="container mx-auto px-6">
114
+ <div class="text-center mb-16">
115
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Why Choose AgentoForce AI Employees</h2>
116
+ <p class="max-w-2xl mx-auto text-gray-600">Our AI agents are designed to handle complex business tasks with precision and efficiency, delivering measurable results.</p>
117
+ </div>
118
+
119
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
120
+ <!-- Feature 1 -->
121
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
122
+ <div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6">
123
+ <i class="fas fa-bolt text-blue-600 text-2xl"></i>
124
+ </div>
125
+ <h3 class="text-xl font-semibold mb-3">24/7 Productivity</h3>
126
+ <p class="text-gray-600">Our AI employees work around the clock without breaks, holidays, or sick days, ensuring continuous business operations.</p>
127
+ </div>
128
+
129
+ <!-- Feature 2 -->
130
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
131
+ <div class="w-14 h-14 bg-green-100 rounded-full flex items-center justify-center mb-6">
132
+ <i class="fas fa-chart-line text-green-600 text-2xl"></i>
133
+ </div>
134
+ <h3 class="text-xl font-semibold mb-3">Measurable Results</h3>
135
+ <p class="text-gray-600">Pay only for completed tasks and verifiable outcomes, not for time spent or software licenses.</p>
136
+ </div>
137
+
138
+ <!-- Feature 3 -->
139
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
140
+ <div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6">
141
+ <i class="fas fa-robot text-purple-600 text-2xl"></i>
142
+ </div>
143
+ <h3 class="text-xl font-semibold mb-3">Specialized Skills</h3>
144
+ <p class="text-gray-600">Access a diverse team of AI specialists trained for specific business functions from customer service to data analysis.</p>
145
+ </div>
146
+
147
+ <!-- Feature 4 -->
148
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
149
+ <div class="w-14 h-14 bg-yellow-100 rounded-full flex items-center justify-center mb-6">
150
+ <i class="fas fa-lock text-yellow-600 text-2xl"></i>
151
+ </div>
152
+ <h3 class="text-xl font-semibold mb-3">Enterprise Security</h3>
153
+ <p class="text-gray-600">Military-grade encryption and compliance with global data protection regulations ensure your information stays secure.</p>
154
+ </div>
155
+
156
+ <!-- Feature 5 -->
157
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
158
+ <div class="w-14 h-14 bg-red-100 rounded-full flex items-center justify-center mb-6">
159
+ <i class="fas fa-sync-alt text-red-600 text-2xl"></i>
160
+ </div>
161
+ <h3 class="text-xl font-semibold mb-3">Continuous Learning</h3>
162
+ <p class="text-gray-600">Our AI employees improve over time, adapting to your business processes and optimizing their performance.</p>
163
+ </div>
164
+
165
+ <!-- Feature 6 -->
166
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition">
167
+ <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
168
+ <i class="fas fa-hand-holding-usd text-indigo-600 text-2xl"></i>
169
+ </div>
170
+ <h3 class="text-xl font-semibold mb-3">Cost Efficiency</h3>
171
+ <p class="text-gray-600">Reduce operational costs by up to 70% compared to traditional staffing while maintaining quality and reliability.</p>
172
+ </div>
173
+ </div>
174
+ </div>
175
+ </section>
176
+
177
+ <!-- How It Works Section -->
178
+ <section id="how-it-works" class="py-20 bg-gray-
179
+ </html>