-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
372 lines (372 loc) · 16.2 KB
/
index.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
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OSS Revival</title>
<link rel="icon" type="image/png" href="img/favicon.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="styles/styles.css" />
</head>
<body>
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="#">
<img src="img/title.png" alt="OSS Revival" height="30">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#team">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
<div class="navbar-icons d-none d-lg-block">
<a href="#">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
</nav>
<section id="home" class="hero-section">
<div id="particles-js"></div>
<div class="container">
<h1>Welcome to OSS Revival</h1>
<p>Empowering open-source, one project at a time.</p>
<a href="#contact" class="btn btn-cta">Get Started</a>
</div>
<div class="wave"></div>
</section>
<section id="services" class="services-section">
<div class="container">
<h2>Services</h2>
<p>Reviving and supporting open-source projects for the community.</p>
<div class="row">
<div class="col-md-3">
<div class="service-box">
<i class="fas fa-heartbeat"></i>
<h4>Project Revitalization</h4>
<p>We bring inactive or outdated open-source projects back to life with updates and maintenance.</p>
</div>
</div>
<div class="col-md-3">
<div class="service-box">
<i class="fas fa-cube"></i>
<h4>New Open-Source Initiatives</h4>
<p>Creating and maintaining new open-source projects that solve real-world challenges.</p>
</div>
</div>
<div class="col-md-3">
<div class="service-box">
<i class="fas fa-calendar-alt"></i>
<h4>Community Contributions</h4>
<p>Connecting developers and contributors to meaningful open-source projects.</p>
</div>
</div>
<div class="col-md-3">
<div class="service-box">
<i class="fas fa-broadcast-tower"></i>
<h4>Consulting & Guidance</h4>
<p>Helping organizations integrate open-source solutions efficiently and securely.</p>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="cta-section">
<div class="container">
<div class="row align-items-center">
<div class="col-md-2"></div>
<div class="col-md-4 text-md-start text-center">
<h2>Contact Us</h2>
<p>Want to collaborate or support an open-source project?</p>
<p>
<strong>Email:</strong>
<a href="mailto:[email protected]" class="contact-email">[email protected]</a>
</p>
</div>
<div class="col-md-4 text-md-end text-center">
<a href="mailto:[email protected]" class="btn">Get in Touch</a>
</div>
</div>
</div>
</section>
<section id="portfolio" class="clients-section">
<div class="container">
<h2>Contributions</h2>
<p>Here are some projects we've supported and revived.</p>
<button id="prev-btn" class="nav-button" disabled>
<img src="img/previous.png" alt="Previous">
</button>
<div id="clients-grid" class="clients-logos">
<span>Vivamus Quam</span>
<span>Etiam Morbi</span>
<span>Suscipit Aliquam</span>
<span>Morbi Suscipit</span>
<span>Vivamus Nec</span>
<span>Lorem Ipsum</span>
<span>Dolor Sit</span>
<span>Aliquam Morbi</span>
<span>Adipiscing Elit</span>
<span>Quisque Quam</span>
<span>Etiam Morbi</span>
<span>Suscipit Aliquam</span>
<span>Morbi Suscipit</span>
<span>Vivamus Nec</span>
<span>Lorem Ipsum</span>
<span>Dolor Sit</span>
<span>Aliquam Morbi</span>
<span>Adipiscing Elit</span>
</div>
<button id="next-btn" class="nav-button">
<img src="img/next.png" alt="Next">
</button>
</div>
</section>
<section class="features-section">
<div class="container">
<div class="row">
<div class="col-md-4 feature-item">
<i class="fas fa-history"></i>
<h4>Bringing Projects Back to Life</h4>
<p>We restore abandoned open-source projects, ensuring they get the support and updates needed to stay relevant.</p>
</div>
<div class="col-md-4 feature-item">
<i class="fas fa-rocket"></i>
<h4>Launching New Open-Source Solutions</h4>
<p>We don’t just fix old projects; we innovate by creating fresh, cutting-edge open-source tools for the community.</p>
</div>
<div class="col-md-4 feature-item">
<i class="fas fa-users-cog"></i>
<h4>Developer-Focused Approach</h4>
<p>We work closely with the developer community to improve usability, functionality, and long-term project sustainability.</p>
</div>
<div class="col-md-4 feature-item">
<i class="fas fa-network-wired"></i>
<h4>Building a Strong Open-Source Network</h4>
<p>We connect contributors, businesses, and tech communities to collaborate on open-source initiatives worldwide.</p>
</div>
<div class="col-md-4 feature-item">
<i class="fas fa-bug"></i>
<h4>Security & Reliability</h4>
<p>We identify vulnerabilities, apply critical patches, and keep projects stable and secure for users and developers alike.</p>
</div>
<div class="col-md-4 feature-item">
<i class="fas fa-hand-holding-usd"></i>
<h4>Funding & Sustainability</h4>
<p>Through sponsorships, donations, and partnerships, we ensure long-term open-source project survival and growth.</p>
</div>
</div>
</div>
</section>
<section id="about" class="faq-section">
<div class="container">
<div class="faq-container">
<div class="faq-header">
<h2>Frequently Asked Questions</h2>
<p>Necessitatibus eius consequatur ex aliquid fuga eum quidem sint consectetur velit</p>
</div>
<div class="faq-item active">
<div class="faq-question">
<i class="fas fa-tools faq-icon"></i>
<strong>What kind of projects does OSS Revival support?</strong>
<i class="fas fa-chevron-down faq-toggle-icon"></i>
</div>
<div class="faq-answer" style="display: block;"> OSS Revival focuses on <strong>revitalizing open-source projects</strong> that have <strong>significant community value</strong> but are no longer actively maintained. We aim to bring these projects back to life by <strong>fixing bugs, modernizing codebases, and ensuring long-term support</strong>. Additionally, we <strong>initiate new open-source projects</strong> that align with <strong>industry needs, security concerns, and developer interests</strong>. </div>
</div>
<div class="faq-item">
<div class="faq-question">
<i class="fas fa-code faq-icon"></i>
<strong>How can I contribute?</strong>
<i class="fas fa-chevron-right faq-toggle-icon"></i>
</div>
<div class="faq-answer"> You can contribute by: <br> - <strong>Writing code</strong>: Help fix bugs, add features, or improve efficiency. <br> - <strong>Reporting bugs</strong>: Identify issues and help improve project stability. <br> - <strong>Improving documentation & translations</strong>: Make projects more accessible to a wider audience. <br> - <strong>Supporting financially</strong>: Donations or sponsorships allow us to expand open-source initiatives. </div>
</div>
<div class="faq-item">
<div class="faq-question">
<i class="fas fa-file-signature faq-icon"></i>
<strong>Can I submit a project for revival?</strong>
<i class="fas fa-chevron-right faq-toggle-icon"></i>
</div>
<div class="faq-answer">
<strong>Yes!</strong> If you know of an <strong>open-source project that has been abandoned</strong> but still holds value, you can submit a request for revival. We review each project based on: <br> - <strong>Community demand</strong> – How many users still rely on it? <br> - <strong>Technical feasibility</strong> – Can the project be modernized with reasonable effort? <br> - <strong>Security risks</strong> – Does it require critical fixes to prevent vulnerabilities?
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<i class="fas fa-handshake faq-icon"></i>
<strong>Can companies collaborate with OSS Revival?</strong>
<i class="fas fa-chevron-right faq-toggle-icon"></i>
</div>
<div class="faq-answer">
<strong>Absolutely!</strong> We welcome collaborations with <strong>tech companies, organizations, and institutions</strong> that want to contribute to the open-source ecosystem. Companies can support OSS Revival by: <br> - <strong>Sponsoring a project or initiative</strong>
<br> - <strong>Providing technical expertise and developer resources</strong>
<br> - <strong>Partnering with us to integrate open-source solutions into enterprise environments</strong>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<i class="fas fa-clock faq-icon"></i>
<strong>Does OSS Revival provide long-term support for projects?</strong>
<i class="fas fa-chevron-right faq-toggle-icon"></i>
</div>
<div class="faq-answer">
<strong>Yes,</strong> we aim to provide <strong>long-term maintenance and updates</strong> for the projects we revive. This includes: - <strong>Regular bug fixes</strong> - <strong>Security patches</strong> - <strong>Compatibility updates</strong> to ensure the project remains relevant. However, our ability to sustain a project depends on <strong>community engagement and contributions</strong>.
</div>
</div>
</div>
</div>
</section>
<section id="team" class="team-section">
<div class="container">
<h2>Team</h2>
<p>Meet the passionate people behind OSS Revival.</p>
<div class="row">
<div class="col-md-3 team-member">
<div class="card">
<div class="icon">
<i class="fas fa-user-circle"></i>
</div>
<div class="info">
<h4>John Doe</h4>
<p>Chief Executive Officer</p>
<div class="social">
<a href="#">
<i class="fab fa-twitter"></i>
</a>
<a href="#">
<i class="fab fa-github"></i>
</a>
<a href="#">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3 team-member">
<div class="card">
<div class="icon">
<i class="fas fa-user-circle"></i>
</div>
<div class="info">
<h4>Jane Smith</h4>
<p>Product Manager</p>
<div class="social">
<a href="#">
<i class="fab fa-twitter"></i>
</a>
<a href="#">
<i class="fab fa-github"></i>
</a>
<a href="#">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3 team-member">
<div class="card">
<div class="icon">
<i class="fas fa-user-circle"></i>
</div>
<div class="info">
<h4>Mike Johnson</h4>
<p>CTO</p>
<div class="social">
<a href="#">
<i class="fab fa-twitter"></i>
</a>
<a href="#">
<i class="fab fa-github"></i>
</a>
<a href="#">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-3 team-member">
<div class="card">
<div class="icon">
<i class="fas fa-user-circle"></i>
</div>
<div class="info">
<h4>Egor Kovalchuk</h4>
<p>Software Engineer(Intern)</p>
<div class="social">
<a href="https://github.com/Egor-OSSRevival">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="footer footer-01">
<div class="container">
<div class="row">
<div class="col-md-6">
<h3>Contact Us</h3>
<p>
<strong>Email:</strong>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div class="col-md-6 d-flex flex-column align-items-center justify-content-center text-center">
<h3>Follow Us</h3>
<p>
<em>"Stay connected with the latest updates and insights from us."</em>
</p>
<div class="social-icons">
<a href="#">
<i class="fab fa-instagram"></i>
</a>
<a href="#">
<i class="fab fa-twitter"></i>
</a>
<a href="#">
<i class="fab fa-github"></i>
</a>
<a href="#">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
<div class="text-center mt-4">
<div class="copyright"> Copyright <strong>OSS Revival</strong>. All Rights Reserved </div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="scripts/script.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="scripts/particles-config.js"></script>
</body>
</html>