forked from CodeURJC-DAW-2023-24/webapp07
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inner-page.component.html
456 lines (386 loc) · 24.7 KB
/
inner-page.component.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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
<section *ngIf="isLoading; else loaded" class = "spinnerDiv">
<app-spinner></app-spinner>
</section>
<ng-template #loaded>
<!-- Si el usuario está autenticado, muestra esta sección vacía -->
<section *ngIf="isLoggedIn; else notLoggedInSection">
</section><!-- End Hero -->
<!-- Si el usuario no está autenticado, muestra esta otra sección -->
<ng-template #notLoggedInSection>
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-lg-6 d-flex flex-column justify-content-center pt-4 pt-lg-0 order-2 order-lg-1"
data-aos="fade-up" data-aos-delay="200">
<h1>SeedVentures</h1>
<h2>Seed change, grow dreams <br> Your investment, their revolution</h2>
<div class="d-flex justify-content-center justify-content-lg-start">
<a [routerLink]="['/signup']" id="signup" class="btn-get-started scrollto">Sign Up</a>
<a href="/video/rickroll.mp4" class="glightbox btn-watch-video"><i
class="bi bi-play-circle"></i><span>Watch Video</span></a>
</div>
</div>
<div class="col-lg-6 order-1 order-lg-2 hero-img" data-aos="zoom-in" data-aos-delay="200">
<img src="/img/hero-img.png" class="img-fluid animated" alt="">
</div>
</div>
</div>
</section><!-- End Hero -->
</ng-template>
<main id="main">
<!-- ======= Clients Section ======= -->
<section id="clients" class="clients section-bg">
<div class="container">
<div class="row" data-aos="zoom-in">
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="/img/clients/client-1.png" class="img-fluid" alt="">
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="/img/clients/client-2.png" class="img-fluid" alt="">
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="/img/clients/client-3.png" class="img-fluid" alt="">
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="/img/clients/client-4.png" class="img-fluid" alt="">
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="/img/clients/client-5.png" class="img-fluid" alt="">
</div>
<div class="col-lg-2 col-md-4 col-6 d-flex align-items-center justify-content-center">
<img src="/img/clients/client-6.png" class="img-fluid" alt="">
</div>
</div>
</div>
</section><!-- End Cliens Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Trending Projects</h2>
<p *ngIf="isLoggedIn; else notLoggedIn">
These projects may interest you. ¡Take a look!
</p>
<ng-template #notLoggedIn>
<p>¡¡ These projects are killing it !!</p>
</ng-template>
</div>
<div id="projects-container" class="grid-container" data-aos="fade-up" data-aos-delay="200">
<div *ngFor="let project of projects" class="col-lg-4 col-md-6 portfolio-item filter-web">
<a [routerLink]="['/details', project.id]">
<div class="image-portfolio">
<img [src]="project.imageUrl" class="img-fluid" alt="Project Image">
</div>
<div class="portfolio-info">
<h4>{{project.name}}</h4>
<p>{{project.category}}</p>
<a class="details-link" title="More Details"></a>
</div>
</a>
</div>
</div>
<div class="row">
<div class="col-12 text-center">
<a *ngIf="isLoggedIn" (click)="loadMoreRecProjects()" class="btn btn-primary">Load more</a>
<a *ngIf="!isLoggedIn" (click)="loadMoreProjects()" class="btn btn-primary">Load more</a>
</div>
</div>
</div>
</section>
<!-- ======= About Us Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About Us</h2>
</div>
<div class="row content">
<div class="col-lg-6">
<p>
At SeedVentures, we believe in the power of innovation and collective action to drive positive change in the world. As a leading crowdfunding platform, we provide a dynamic space where creators, innovators, and visionaries can turn their ideas into reality with the support of a global community.
</p>
<ul>
<li><i class="ri-check-double-line"></i> Democratize funding</li>
<li><i class="ri-check-double-line"></i> Bring personal projects to life</li>
<li><i class="ri-check-double-line"></i> Transparency, integrity, and inclusivity</li>
</ul>
</div>
<div class="col-lg-6 pt-4 pt-lg-0">
<p>
Join us in shaping the future, one seed at a time. Together, we can plant the seeds of innovation and cultivate a brighter tomorrow for generations to come. Welcome to SeedVentures, where ideas take root and dreams flourish.
</p>
<a href="#team" class="btn-learn-more">Learn More</a>
</div>
</div>
</div>
</section><!-- End About Us Section -->
<!-- ======= Why Us Section ======= -->
<section id="why-us" class="why-us section-bg">
<div class="container-fluid" data-aos="fade-up">
<div class="row">
<div class="col-lg-7 d-flex flex-column justify-content-center align-items-stretch order-2 order-lg-1">
<div class="content">
<h3>How to start your <strong>own proyect</strong></h3>
<p>
Would you like to start your new project and allow others to finance it? Follow these steps to achieve
it:
</p>
</div>
<div class="accordion-list">
<ul>
<li>
<a data-bs-toggle="collapse" class="collapse" data-bs-target="#accordion-list-1"><span>01</span>
Create a new account <i class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-1" class="collapse show" data-bs-parent=".accordion-list">
<p>
Sign up for a new account on our website, or log in if you're already registered, and ensure you
provide all the necessary personal details to complete your profile
</p>
</div>
</li>
<li>
<a data-bs-toggle="collapse" data-bs-target="#accordion-list-2" class="collapsed"><span>02</span>
Upload your project <i class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-2" class="collapse" data-bs-parent=".accordion-list">
<p>
Design and add all the necessary features to describe your project to the rest of the world,
allowing you to include photos to enhance its appearance
</p>
</div>
</li>
<li>
<a data-bs-toggle="collapse" data-bs-target="#accordion-list-3" class="collapsed"><span>03</span>
Share your project <i class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="accordion-list-3" class="collapse" data-bs-parent=".accordion-list">
<p>
Showcase your project to the world by sharing it with your friends, family, or even through social
media. Interested investors will have the opportunity to contribute to your project
</p>
</div>
</li>
</ul>
</div>
</div>
<div class="col-lg-5 align-items-stretch order-1 order-lg-2 img"
style='background-image: url("assets/img/why-us.png");' data-aos="zoom-in" data-aos-delay="150"> </div>
</div>
</div>
</section><!-- End Why Us Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Services</h2>
<p>Embark on your journey with our comprehensive range of services designed to bring your projects to life.</p>
</div>
<div class="row">
<div class="col-xl-3 col-md-6 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="">Proyect creations</a></h4>
<p>This service involves the initiation and development of new projects or ideas. It encompasses the process of conceptualizing, planning, and executing a project from its inception to completion</p>
</div>
</div>
<div class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="zoom-in"
data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="bx bx-file"></i></div>
<h4><a href="">Proyect contributions</a></h4>
<p>This service pertains to individuals or entities contributing resources, such as funding, expertise, or materials, to support the realization of a project. Contributions can come from various sources, including backers, investors, or collaborators</p>
</div>
</div>
<div class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-xl-0" data-aos="zoom-in"
data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bx bx-layer"></i></div>
<h4><a href="">Networking</a></h4>
<p>Networking involves establishing and nurturing relationships with individuals or organizations within a particular industry or community. It facilitates opportunities for collaboration, sharing of knowledge, and accessing resources that can enhance the success of projects</p>
</div>
</div>
<div class="col-xl-3 col-md-6 d-flex align-items-stretch mt-4 mt-xl-0" data-aos="zoom-in"
data-aos-delay="400">
<div class="icon-box">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4><a href="">Proyect financiation</a></h4>
<p>Project financing refers to the process of acquiring funding or financial resources to support the implementation of a project. It may involve securing investments, loans, grants, or other forms of financial support to cover the costs associated with project development and execution</p>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Cta Section ======= -->
<section id="cta" class="cta">
<div class="container" data-aos="zoom-in">
<div class="row">
<div class="col-lg-9 text-center text-lg-start">
<h3>Join us !</h3>
<p> Join us and become part of our vibrant community by creating an account on our website. Unlock exclusive benefits, stay updated with the latest news and offerings, and connect with like-minded individuals who share your interests. Start your journey with us today!.</p>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a href="#" class="cta-btn align-middle">Join Us</a>
</div>
</div>
</div>
</section><!-- End Cta Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Team</h2>
<p>"Great pains lead to great achievements.
Needs drive us to find solutions even in the most difficult situations.
Determination and passion propel us forward. There is no obstacle we cannot overcome.
Every challenge is an opportunity to grow and achieve our goals."
</div>
<div class="row">
<div class="col-lg-6" data-aos="zoom-in" data-aos-delay="100">
<div class="member d-flex align-items-start">
<div class="pic"><img src="https://cdn.pixabay.com/photo/2016/12/01/11/40/blossom-1875080_1280.png"
class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Diego Isaac Fernández</h4>
<span>Chief Executive Officer</span>
<p>Si la vida te da limones, haz limonada</p>
<div class="social">
<a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""> <i class="ri-linkedin-box-fill"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="200">
<div class="member d-flex align-items-start">
<div class="pic"><img src="https://i.pinimg.com/originals/85/15/be/8515be0f8158b10f8f305629555dfde4.png"
class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Fernando Alonso Calderón</h4>
<span>Product Manager</span>
<p>Mejor arrepentirse</p>
<div class="social">
<a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""> <i class="ri-linkedin-box-fill"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4" data-aos="zoom-in" data-aos-delay="300">
<div class="member d-flex align-items-start">
<div class="pic"><img
src="https://static.vecteezy.com/system/resources/previews/009/266/705/original/element-flower-icon-free-png.png"
class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Marcos Hernangil Prats</h4>
<span>Chief Operating Officer</span>
<p>El software es progreso</p>
<div class="social">
<a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""> <i class="ri-linkedin-box-fill"></i> </a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4" data-aos="zoom-in" data-aos-delay="400">
<div class="member d-flex align-items-start">
<div class="pic"><img
src="https://images.vexels.com/media/users/3/135719/isolated/preview/1ee813a1483e4b152c0131e357847939-icono-de-flores-de-colores-5.png"
class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Pablo Requejo Postlbauer</h4>
<span>Chief Creative Officer</span>
<p>Si bebes no conduzcas</p>
<div class="social">
<a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""> <i class="ri-linkedin-box-fill"></i> </a>
</div>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-6 mt-4" data-aos="zoom-in" data-aos-delay="400">
<div class="member d-flex align-items-start">
<div class="pic"><img
src="https://images.vexels.com/media/users/3/135718/isolated/preview/12e56f8395992260b7125e02a59724b8-icono-de-flor-de-colores-4.png"
class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Miguel Ángel García</h4>
<span>Chief Technology Officer</span>
<p>Apostamos por el talento</p>
<div class="social">
<a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""><i class="ri-linkedin-box-fill"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Frequently Asked Questions Section ======= -->
<section id="faq" class="faq section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Frequently Asked Questions</h2>
<p>Discover answers to our most frequently asked questions and gain insights into everything you need to know.</p>
</div>
<div class="faq-list">
<ul>
<li data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" class="collapse"
data-bs-target="#faq-list-1">How does crowdfunding on SeedVentures work? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-1" class="collapse show" data-bs-parent=".faq-list">
<p>
SeedVenture is a platform where creators can launch projects and raise funds from backers. Creators set a funding goal and deadline, and backers pledge money to support the project. If the funding goal is met by the deadline, the project is funded, and backers' pledges are collected. If the goal is not met, no money changes hands.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-2"
class="collapsed">What are the benefits of backing a project on SeedVenture? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-2" class="collapse" data-bs-parent=".faq-list">
<p>
Backing a project on SeedVenture allows you to support innovative ideas and creative endeavors. You often get access to exclusive rewards or perks depending on your level of support. Additionally, you can be part of a community that shares your interests and values.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-3"
class="collapsed">Can I trust the projects listed on SeedVenture? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-3" class="collapse" data-bs-parent=".faq-list">
<p>
While SeedVenture strives to ensure the integrity of the projects listed on its platform, there is always a level of risk involved in crowdfunding. It's essential to research the project creator, read project updates, and assess the feasibility of the project before pledging your support. Kickstarter provides guidelines for creators and offers some level of protection for backers, but there are no guarantees that every project will succeed.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-4"
class="collapsed">What happens if a project I backed on SeedVenture doesn't meet its funding goal? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-4" class="collapse" data-bs-parent=".faq-list">
<p>
If a project fails to meet its funding goal by the deadline, no money is collected from backers, and the project is not funded. In this case, backers get their money back, and the project creator does not receive any funds. The project creator may choose to relaunch the project with adjustments or seek alternative funding sources.
</p>
</div>
</li>
</ul>
</div>
</div>
</section><!-- End Frequently Asked Questions Section -->
</main><!-- End #main -->
</ng-template>