Skip to content

Commit d15b158

Browse files
committed
Added app and video container
1 parent bec71bc commit d15b158

2 files changed

Lines changed: 92 additions & 9 deletions

File tree

app_SS1.jpg

64.3 KB
Loading

index.html

Lines changed: 92 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,77 @@
6666

6767
.video, .app-download {
6868
text-align: center;
69-
margin: 30px 0;
69+
margin: 50px 0;
70+
}
71+
72+
.video {
73+
background: white;
74+
border-radius: 20px;
75+
padding: 40px;
76+
box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
77+
max-width: 1400px;
78+
margin-left: auto;
79+
margin-right: auto;
80+
}
81+
82+
.video-container {
83+
margin-top: 30px;
84+
display: flex;
85+
justify-content: center;
86+
align-items: center;
87+
}
88+
89+
.video iframe {
90+
border-radius: 15px;
91+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
92+
transition: transform 0.3s ease;
93+
}
94+
95+
.video iframe:hover {
96+
transform: translateY(-5px);
97+
}
98+
99+
.app-download {
100+
background: white;
101+
border-radius: 20px;
102+
padding: 40px;
103+
box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
104+
max-width: 1400px;
105+
margin-left: auto;
106+
margin-right: auto;
107+
}
108+
109+
.app-container {
110+
display: flex;
111+
gap: 40px;
112+
align-items: center;
113+
justify-content: center;
114+
margin: 0 auto;
115+
}
116+
117+
.app-image img {
118+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
119+
transition: transform 0.3s ease;
120+
}
121+
122+
.app-image img:hover {
123+
transform: translateY(-5px);
124+
}
125+
126+
.app-description {
127+
text-align: left;
128+
padding: 20px;
129+
}
130+
131+
.app-description h3 {
132+
color: #357a38;
133+
font-size: 1.8em;
134+
margin-bottom: 20px;
135+
}
136+
137+
.app-description p {
138+
color: #555;
139+
margin-bottom: 25px;
70140
}
71141

72142
.video iframe {
@@ -158,17 +228,30 @@ <h3>Alerts & Updates</h3>
158228

159229
<section class="video">
160230
<h2>Demo Video</h2>
161-
<div class="placeholder-image">Video Placeholder</div>
162-
<!-- Replace above div with your embedded video, e.g.:
163-
<iframe src="YOUR_VIDEO_LINK_HERE" frameborder="0" allowfullscreen></iframe>
164-
-->
231+
<div class="video-container">
232+
<iframe width="467" height="830" src="https://www.youtube.com/embed/UTdf7FC17ng" title="AgroSmart | Smart Agriculture System Demo | Auto Pump + Sensors + Android App | SIH 2025 PS25062" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
233+
</div>
165234
</section>
166235

167236
<section class="app-download">
168-
<h2>Download App</h2>
169-
<div class="placeholder-image">APK Placeholder</div>
170-
<a href="https://github.com/TheTechTiger/AgroSmart/releases/download/v1.0.0/app-release.apk" class="download-button">Download APK</a>
171-
237+
<h2>Experience AgroSmart Mobile App</h2>
238+
<div class="app-container">
239+
<div class="app-image" style="flex: 0 0 540px;">
240+
<img src="app_SS1.jpg" alt="Application Screenshot" style="width: 540px; height: 1569px; object-fit: contain; border-radius: 15px;">
241+
</div>
242+
<div class="app-description" style="flex: 1;">
243+
<h3>AgroSmart Mobile Application</h3>
244+
<p>Our mobile application provides farmers with complete control over their irrigation system right from their smartphones. Key features include:</p>
245+
<ul style="list-style-type: none; padding: 0;">
246+
<li style="margin: 15px 0;">📊 Real-time monitoring of soil moisture and temperature</li>
247+
<li style="margin: 15px 0;">🚰 Remote control of irrigation valves</li>
248+
<li style="margin: 15px 0;">💧 Water tank level monitoring</li>
249+
<li style="margin: 15px 0;">📱 User-friendly interface with intuitive controls</li>
250+
<li style="margin: 15px 0;">🔔 Instant alerts for critical conditions</li>
251+
</ul>
252+
<a href="https://github.com/TheTechTiger/AgroSmart/releases/download/v1.0.0/app-release.apk" class="download-button" style="margin-top: 20px;">Download APK</a>
253+
</div>
254+
</div>
172255
</section>
173256

174257
<section>

0 commit comments

Comments
 (0)