-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.vue
116 lines (113 loc) · 3.08 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
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
<template>
<div class="text-center">
<h1
class="
dark:text-gray-100
text-gray-900 text-4xl
tracking-tight
font-extrabold
sm:text-5xl
md:text-6xl
cursor-default
"
>
<span class="block xl:inline">Code</span>
<!-- space -->
<span class="block text-red-600 xl:inline">IIEST</span>
</h1>
<p
class="
mt-3
max-w-md
mx-auto
text-base text-gray-500
dark:text-gray-400
sm:text-lg
md:mt-5
md:text-xl
md:max-w-3xl
cursor-default
"
>
The Coding Club of IIEST, Shibpur.
<br /><br />
CodeIIEST is one of the newest clubs of the <span class="font-bold">Indian Institute of Engineering Science and Technology, Shibpur</span>. Since its inception in November of 2014, the club has been actively involved in the development of comprehensive computer science abilities among students. The group is made up of a variety of interests and serves as a fantastic hub for a variety of instructive and interactive programs. The students stay up to date on new technology, which helps them improve their skills and foster creativity and innovation.
</p>
<div class="mt-15">
<h1
class="
dark:text-gray-100
text-gray-900 text-3xl
tracking-tight
font-bold
"
>
Chapters
</h1>
<div class="flex flex-wrap justify-center mt-5">
<div
v-for="(chapter, index) in chapters"
:key="index"
class="
w-full
max-w-sm
px-4
py-3
mx-5
my-3
bg-white
rounded-md
shadow-md
transition duration-300
hover:shadow-lg hover:shadow-red-500
dark:hover:shadow-red-200
dark:bg-dark-800
"
>
<div>
<h1
class="mt-2 text-lg font-semibold text-gray-800 dark:text-white"
>
{{ chapter.name }}
</h1>
<p
class="
mt-2
text-sm text-gray-600
dark:text-gray-300
cursor-default
"
>
{{ chapter.descp }}
</p>
</div>
<div>
<div
class="flex justify-center mt-2 text-gray-700 dark:text-gray-200"
>
<router-link
:to="chapter.route"
class="
mx-2
text-red-600
cursor-pointer
dark:text-red-400
hover:underline
"
>
<span>Chapter Details<carbon-arrow-right aria-label="Chapter Details" class="inline" /></span>
</router-link>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { chapters } from '~/logic'
</script>
<route lang="yaml">
meta:
layout: default
</route>