File size: 14,851 Bytes
80c68f6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d37d39c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80c68f6
d37d39c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80c68f6
 
 
d37d39c
80c68f6
 
 
d37d39c
80c68f6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d37d39c
 
 
 
 
 
 
 
 
 
80c68f6
 
d37d39c
 
 
 
 
 
 
 
80c68f6
d37d39c
 
80c68f6
 
d37d39c
80c68f6
d37d39c
 
 
80c68f6
d37d39c
 
80c68f6
 
d37d39c
 
 
 
 
 
 
 
 
80c68f6
d37d39c
80c68f6
 
d37d39c
 
80c68f6
d37d39c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80c68f6
 
d37d39c
 
80c68f6
 
d37d39c
80c68f6
 
 
 
 
48ab260
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>EcoPower Dashboard</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        primary: '#3b82f6', // blue-500
                        secondary: '#10b981', // emerald-500
                    }
                }
            }
        }
    </script>
    <style>
        .btn-primary {
            @apply bg-primary hover:bg-primary/90 text-white font-medium py-2 px-6 rounded-full transition-all duration-200 shadow-md hover:shadow-lg;
        }
        .btn-secondary {
            @apply bg-secondary hover:bg-secondary/90 text-white font-medium py-2 px-6 rounded-full transition-all duration-200;
        }
        .card {
            @apply bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition-all duration-200;
        }
        .nav-link {
            @apply text-gray-600 hover:text-primary transition-colors duration-200;
        }
        .nav-link.active {
            @apply text-primary font-medium;
        }
    </style>
</head>
<body class="bg-gray-50 font-sans">
    <!-- Hero Section -->
    <section class="bg-primary text-white">
        <div class="container mx-auto px-6 py-20">
            <div class="flex flex-col md:flex-row items-center">
                <div class="md:w-1/2 mb-10 md:mb-0">
                    <h1 class="text-4xl md:text-5xl font-bold mb-6">Smart Energy Storage for a Sustainable Future</h1>
                    <p class="text-xl mb-8">Our cutting-edge battery technology provides efficient, reliable energy storage for homes and businesses.</p>
                    <div class="flex flex-col sm:flex-row gap-4">
                        <button class="btn-secondary">
                            Learn More <i data-feather="arrow-right" class="ml-2"></i>
                        </button>
                        <button class="bg-white text-primary hover:bg-gray-100 font-medium py-3 px-6 rounded-full transition-all duration-200 shadow-md">
                            Get a Quote
                        </button>
                    </div>
                </div>
                <div class="md:w-1/2">
                    <img src="http://static.photos/technology/1200x630/42" alt="EcoPower Battery System" class="rounded-lg shadow-2xl">
                </div>
            </div>
        </div>
    </section>
    <!-- Features Section -->
    <section class="py-16 bg-gray-50">
        <div class="container mx-auto px-6">
            <div class="text-center mb-16">
                <h2 class="text-3xl font-bold mb-4">Why Choose EcoPower?</h2>
                <p class="text-gray-600 max-w-2xl mx-auto">Our advanced energy storage solutions deliver unmatched performance and reliability.</p>
            </div>
            
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="card text-center p-8">
                    <div class="bg-primary/10 p-4 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-6">
                        <i data-feather="battery" class="text-primary text-2xl"></i>
                    </div>
                    <h3 class="font-bold text-xl mb-3">High Capacity</h3>
                    <p class="text-gray-600">Store more energy with our industry-leading battery density technology.</p>
                </div>
                
                <div class="card text-center p-8">
                    <div class="bg-primary/10 p-4 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-6">
                        <i data-feather="clock" class="text-primary text-2xl"></i>
                    </div>
                    <h3 class="font-bold text-xl mb-3">Long Lifespan</h3>
                    <p class="text-gray-600">Designed for durability with thousands of charge cycles.</p>
                </div>
                
                <div class="card text-center p-8">
                    <div class="bg-primary/10 p-4 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-6">
                        <i data-feather="shield" class="text-primary text-2xl"></i>
                    </div>
                    <h3 class="font-bold text-xl mb-3">Smart Safety</h3>
                    <p class="text-gray-600">Advanced thermal management and protection systems.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Product Showcase -->
    <section class="py-16">
        <div class="container mx-auto px-6">
            <div class="flex flex-col md:flex-row items-center gap-12">
                <div class="md:w-1/2">
                    <img src="http://static.photos/technology/640x360/123" alt="EcoPower Battery Unit" class="rounded-lg shadow-lg">
                </div>
                <div class="md:w-1/2">
                    <h2 class="text-3xl font-bold mb-6">Next-Gen Battery Technology</h2>
                    <ul class="space-y-4">
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-green-500 mr-3 mt-1"></i>
                            <span>Modular design for flexible capacity</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-green-500 mr-3 mt-1"></i>
                            <span>Seamless integration with solar systems</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-green-500 mr-3 mt-1"></i>
                            <span>Real-time monitoring via mobile app</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-green-500 mr-3 mt-1"></i>
                            <span>10-year performance warranty</span>
                        </li>
                    </ul>
                    <button class="mt-8 btn-primary">
                        View Specifications <i data-feather="download" class="ml-2"></i>
                    </button>
                </div>
            </div>
        </div>
    </section>

    <!-- Main Content -->
    <main class="container mx-auto px-6 py-8">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8">
            <div class="card">
                <div class="flex items-center justify-between">
                    <div>
                        <p class="text-gray-500">Energy Generated</p>
                        <h3 class="text-3xl font-bold mt-2">5,000 MWh</h3>
                    </div>
                    <div class="bg-primary/10 p-3 rounded-full">
                        <i data-feather="sun" class="text-primary"></i>
                    </div>
                </div>
                <div class="mt-4 flex items-center text-sm text-green-500">
                    <i data-feather="trending-up" class="mr-1"></i>
                    <span>12% increase</span>
                </div>
            </div>

            <div class="card">
                <div class="flex items-center justify-between">
                    <div>
                        <p class="text-gray-500">Carbon Offset</p>
                        <h3 class="text-3xl font-bold mt-2">2,500+</h3>
                    </div>
                    <div class="bg-secondary/10 p-3 rounded-full">
                        <i data-feather="wind" class="text-secondary"></i>
                    </div>
                </div>
                <div class="mt-4 flex items-center text-sm text-green-500">
                    <i data-feather="trending-up" class="mr-1"></i>
                    <span>8% increase</span>
                </div>
            </div>

            <div class="card">
                <div class="flex items-center justify-between">
                    <div>
                        <p class="text-gray-500">Customers</p>
                        <h3 class="text-3xl font-bold mt-2">10,000+</h3>
                    </div>
                    <div class="bg-primary/10 p-3 rounded-full">
                        <i data-feather="users" class="text-primary"></i>
                    </div>
                </div>
                <div class="mt-4 flex items-center text-sm text-green-500">
                    <i data-feather="trending-up" class="mr-1"></i>
                    <span>15% increase</span>
                </div>
            </div>

            <div class="card">
                <div class="flex items-center justify-between">
                    <div>
                        <p class="text-gray-500">Efficiency</p>
                        <h3 class="text-3xl font-bold mt-2">15%</h3>
                    </div>
                    <div class="bg-secondary/10 p-3 rounded-full">
                        <i data-feather="activity" class="text-secondary"></i>
                    </div>
                </div>
                <div class="mt-4 flex items-center text-sm text-green-500">
                    <i data-feather="trending-up" class="mr-1"></i>
                    <span>5% increase</span>
                </div>
            </div>
        </div>
        <!-- Call to Action -->
        <section class="bg-primary/10 rounded-xl p-12 text-center mb-16">
            <h2 class="text-3xl font-bold mb-6">Ready to Power Your Future?</h2>
            <p class="text-gray-600 max-w-2xl mx-auto mb-8">Join thousands of satisfied customers who are taking control of their energy needs with EcoPower.</p>
            <div class="flex flex-col sm:flex-row justify-center gap-4">
                <button class="btn-primary">
                    Contact Sales <i data-feather="message-square" class="ml-2"></i>
                </button>
                <button class="bg-white text-primary hover:bg-gray-50 font-medium py-3 px-6 rounded-full transition-all duration-200 shadow-md border border-primary/20">
                    Find a Dealer
                </button>
            </div>
        </section>
        <!-- Testimonials -->
        <section class="mb-16">
            <h2 class="text-3xl font-bold text-center mb-12">Trusted By Energy Innovators</h2>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="card p-8">
                    <div class="flex items-center mb-6">
                        <div class="w-12 h-12 rounded-full bg-gray-200 mr-4"></div>
                        <div>
                            <h4 class="font-bold">Sarah Johnson</h4>
                            <p class="text-gray-500 text-sm">Solar Installer</p>
                        </div>
                    </div>
                    <p class="text-gray-600">"The EcoPower batteries have transformed how we design solar systems. The reliability and capacity are unmatched."</p>
                </div>
                <div class="card p-8">
                    <div class="flex items-center mb-6">
                        <div class="w-12 h-12 rounded-full bg-gray-200 mr-4"></div>
                        <div>
                            <h4 class="font-bold">Michael Chen</h4>
                            <p class="text-gray-500 text-sm">Homeowner</p>
                        </div>
                    </div>
                    <p class="text-gray-600">"After installing EcoPower, our energy bills dropped by 60%. The system pays for itself!"</p>
                </div>
                <div class="card p-8">
                    <div class="flex items-center mb-6">
                        <div class="w-12 h-12 rounded-full bg-gray-200 mr-4"></div>
                        <div>
                            <h4 class="font-bold">Energy Solutions Co.</h4>
                            <p class="text-gray-500 text-sm">Commercial Installer</p>
                        </div>
                    </div>
                    <p class="text-gray-600">"Our commercial clients love the scalability and performance of EcoPower systems."</p>
                </div>
            </div>
        </section>
    </main>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white py-12">
        <div class="container mx-auto px-6">
            <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
                <div>
                    <div class="flex items-center mb-6">
                        <i data-feather="zap" class="text-primary mr-2"></i>
                        <h3 class="text-xl font-bold">EcoPower</h3>
                    </div>
                    <p class="text-gray-400">Leading the energy storage revolution with innovative battery solutions.</p>
                </div>
                <div>
                    <h4 class="font-bold text-lg mb-4">Products</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Residential</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Commercial</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Industrial</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-bold text-lg mb-4">Resources</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Documentation</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Case Studies</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Blog</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-bold text-lg mb-4">Company</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">About Us</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Careers</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Contact</a></li>
                    </ul>
                </div>
            </div>
            <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
                <p>© 2023 EcoPower. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>
        feather.replace();
    </script>
</body>
</html>