-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
155 lines (141 loc) · 4.98 KB
/
index.html
File metadata and controls
155 lines (141 loc) · 4.98 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AutoGrowBox</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: 'Segoe UI', Arial, sans-serif;
background: #f9f9f9;
color: #222;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 2em auto;
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 16px rgba(0,0,0,0.07);
padding: 2em 2.5em;
}
h1 {
color: #27ae60;
font-size: 2.2em;
margin-bottom: 0.2em;
}
h2 {
color: #2980b9;
margin-top: 2em;
}
h3 {
color: #d35400;
margin-top: 1.5em;
}
ul, ol {
margin-bottom: 1.2em;
padding-left: 2em;
}
ul li, ol li {
margin-bottom: 0.5em;
line-height: 1.7;
}
a {
color: #2980b9;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
hr, .divider {
border: none;
border-top: 1px solid #e0e0e0;
margin: 2em 0;
}
.footer {
margin-top: 2em;
font-size: 0.95em;
color: #888;
text-align: center;
border-top: 1px solid #e0e0e0;
padding-top: 1em;
}
@media (max-width: 700px) {
.container {
padding: 1em 0.5em;
}
h1 {
font-size: 1.5em;
}
}
</style>
</head>
<body>
<div class="container">
🌱 The AutoGrowBox is an innovative, compact, and highly efficient automation grow system engineered to revolutionize farming and gardening across scales. Designed with accessibility and sustainability at its core, it offers a fully controlled microclimate that optimizes light, temperature, humidity, and nutrient delivery — empowering users to cultivate a wide variety of crops with minimal effort and maximum yield.
Whether you're a seasoned farmer, urban gardener, or tech-savvy enthusiast, the AutoGrowBox simplifies the growing process through intelligent automation, real-time monitoring, and adaptive feedback systems. Its modular design allows for easy customization and scalability, making it ideal for small apartments, educational labs, or large-scale vertical farms.
By reducing resource waste and eliminating guesswork, the AutoGrowBox promotes regenerative agriculture and food security, while fostering innovation in agri-tech and sustainable living. It’s not just a grow box — it’s a leap toward smarter, greener cultivation.
<div class="divider"></div>
<h2>🚀 Features</h2>
<h3>Efficient Design</h3>
<ul>
<li>Compact and space-saving design suitable for small spaces.</li>
<li>Energy-efficient components to reduce power consumption.</li>
<li>Modular structure for easy assembly and maintenance.</li>
</ul>
<h3>Accessible Features</h3>
<ul>
<li>User-friendly interface for monitoring and controlling the grow box.</li>
<li>Affordable materials to ensure accessibility for all users.</li>
<li>Designed to be lightweight and portable.</li>
</ul>
<h3>Automate Growth</h3>
<ul>
<li>Automated watering, lighting, and nutrient delivery systems.</li>
<li>Sensors to monitor temperature, humidity, and soil moisture levels.</li>
<li>AI-driven algorithms to optimize plant growth cycles.</li>
</ul>
<h3>Controlled Environment</h3>
<ul>
<li>Fully enclosed system to protect plants from pests and external factors.</li>
<li>Adjustable climate controls for temperature, humidity, and light intensity.</li>
<li>Real-time monitoring and alerts for environmental changes.</li>
</ul>
<div class="divider"></div>
<h2>🌐 Connect</h2>
<h3>How to Get Involved</h3>
<ol>
<li>
<strong>Join the Community</strong>:
<ul>
<li>Follow the project on GitHub and participate in discussions.</li>
<li>Share your ideas and feedback to improve the AutoGrowBox.</li>
</ul>
</li>
<li>
<strong>Contribute to Development</strong>:
<ul>
<li>Help with hardware design, software development, or testing.</li>
<li>Submit pull requests to enhance the project.</li>
</ul>
</li>
<li>
<strong>Spread the Word</strong>:
<ul>
<li>Share the project with your network to raise awareness about sustainable farming.</li>
</ul>
</li>
</ol>
<div class="divider"></div>
<h3>Contact</h3>
<p>
For more information about the project or to get involved, reach out via GitHub Issues or Discussions to learn more.
<a href="https://github.com/marspreserve" target="_blank">GitHub.com/marspreserve</a>
</p>
<div class="footer">
Made with ❤️ by <a href="https://github.com/Coderad32" target="_blank">Coderad32</a>
</div>
</div>
</body>
</html>