-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
62 lines (60 loc) · 3.07 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Solar Panel Performance Dashboard</title>
<link rel="stylesheet" href="about.css">
</head>
<body>
<header>
<div class="container">
<img src="images/helios.jpg" alt="Solar Panel Performance Dashboard" class="logo"> <!-- Ensure the path to the logo image is correct -->
<nav>
<ul>
<li><a href="cc.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li class="dropdown">
<a href="features.html">Features ▾</a>
<ul class="dropdown-content">
<li><a href="advantages.html">Advantages</a></li>
<li><a href="video-insights.html">Video Insights</a></li>
<li><a href="weather.html">Energy Trends</a></li>
<li><a href="cost.html">Cost-Cutting</a></li>
<li><a href="ei.html">Environmental Impact</a></li>
</ul>
</li>
<li><a href="power-stats.html">Analytics</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
</ul>
</nav>
</div>
</header>
<section class="about">
<div class="container">
<h2>About Us</h2>
<p>The Solar Panel Performance Dashboard is designed to help you monitor, analyze, and optimize the performance of your solar energy system. Our goal is to provide users with comprehensive and real-time data, enabling them to make informed decisions about their energy consumption and maintenance needs.</p>
<h3>Our Mission</h3>
<p>Our mission is to empower individuals and businesses to harness the power of solar energy efficiently and effectively. By providing advanced analytics and insights, we aim to promote sustainable energy practices and contribute to a greener future.</p>
<h3>Benefits</h3>
<ul>
<li>Real-time monitoring of solar panel performance</li>
<li>Detailed historical data analysis</li>
<li>Customized alerts and notifications</li>
<li>Secure user authentication and data privacy</li>
<li>Comprehensive dashboard with key performance indicators</li>
<li>Easy data export for reporting and further analysis</li>
<li>Energy usage trends and optimization suggestions</li>
<li>Weather integration for performance prediction</li>
<li>Maintenance reminders and tips</li>
</ul>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Helios. All rights reserved.</p>
</div>
</footer>
</body>
</html>