-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.vue
56 lines (52 loc) · 1.82 KB
/
index.vue
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
<template>
<!-- Start: Features Boxed -->
<div class="features-boxed">
<div class="container">
<!-- Start: Intro -->
<div class="intro">
<h2 class="text-center">About us</h2>
<p class="text-center">
We are about the Kenyan techy interested in contributing to opensource
and other projects. We give you a chance to increase your
collaboration skills.
</p>
</div>
<!-- End: Intro -->
<!-- Start: Features -->
<div class="row justify-content-center features">
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box">
<img src="../assets/img/team.png" alt="team" height="200" />
<h3 class="name">Great Teams</h3>
<p class="description">
Get to work with great teams with experience in developer
operations
</p>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box">
<img src="../assets/img/skill.png" alt="team" height="200" />
<h3 class="name">Improve your Skills</h3>
<p class="description">
Looking to get challenged? Join the most talented devs in the 254
and flex your skills
</p>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box">
<img src="../assets/img/career.png" alt="team" height="200" />
<h3 class="name">Accelerate your career</h3>
<p class="description">
Want to get discovered? Here is an opportunity to let your commits
market you.
</p>
</div>
</div>
</div>
<!-- End: Features -->
</div>
</div>
<!-- End: Features Boxed -->
</template>