-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathSisterGroups.vue
81 lines (79 loc) · 2.78 KB
/
SisterGroups.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
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
<template>
<div
class="sister-groups w-auto flex flex-col sm:content-center ml-8 mr-8 sm:ml-0 sm:mr-0 sm:pt-60"
>
<div
class="text-3xl font-extrabold sm:self-center leading-loose sm:w-feed sm:text-center"
>
Sister Groups
</div>
<div
class="sm:w-180 pt-6 text-1.5xl sm:text-lg text-grey sm:font-medium leading-170 sm:self-center sm:text-center sm:w-sister"
>
Sister groups are different smaller groups within the umbrella of
Software Development Section, along with SDSLabs. The members of
these groups focus on specific areas of technological innovation
like data science, competetive programming, and information
security.
</div>
<div
class="sister flex flex-row self-center mt-32 justify-between sm:w-groups"
>
<div>
<Sister
v-bind:url="dsg"
website="https://dsgiitr.com"
title="DATA SCIENCE GROUP"
description="As a part of SDS, this group aims at improving the culture of Data Science and Machine Learning in IIT Roorkee."
/>
</div>
<div>
<Sister
class="ml-10"
v-bind:url="pag"
website="https://www.facebook.com/groups/sdspag"
title="PROGRAMMING & ALGORITHMS GROUP"
description="A bunch of competitive programming enthusiasts, PAG, frequently organizes coding lectures and contests for IITR people."
/>
</div>
<div>
<Sister
class="ml-10"
v-bind:url="infosec"
website="https://infoseciitr.in"
title="INFOSECIITR"
description="InfoSecIITR is a group of information security enthusiasts. It is an open group that consists only of IITR students and alumni."
/>
</div>
</div>
<div class="mt-12 sm:hidden"><SisterGallery /></div>
</div>
</template>
<script>
import Sister from "@/components/about/Sister.vue";
import SisterGallery from "@/components/about/SisterGallery.vue";
import dsg from "@/assets/images/dsg.svg";
import pag from "@/assets/images/pag.svg";
import infosec from "@/assets/images/infosec.svg";
export default {
name: "SisterGroups",
components: {
Sister,
SisterGallery
},
data: function initData() {
return {
dsg: dsg,
pag: pag,
infosec: infosec
};
}
};
</script>
<style lang="scss" scoped>
@media screen and (max-width: 576px) {
.sister {
display: none;
}
}
</style>