Skip to content

Commit 524a038

Browse files
committed
v1.1.0 ready to go live
1 parent 8a0178d commit 524a038

File tree

3 files changed

+22
-75
lines changed

3 files changed

+22
-75
lines changed

src/assets/git.png

7.69 KB
Loading

src/views/About.vue

Lines changed: 19 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,14 @@
77
<div id="KLogo">
88
<img src="../assets/Logo.png" alt="" />
99
</div>
10-
11-
<div id="MyLogo"></div>
1210
</div>
1311

1412
<div id="Section2">
1513
<p>
1614
Kalaam is the programming language in Hindi and has all the basic functionalities of a modern programming
1715
language. From for loops to while loops and from functions to conditional statements.
1816
</p>
19-
<p>
20-
Programming needs to reach every part of India if we have to produce more number of quality startups and
21-
technically sound ecosystem. Language and unfamiliarity should not become barriers to these students to learn
22-
to code. Familiarity can make anything more connected, and learning does not seem shallow. What could be more
23-
familiar than the language we used for communication. The language between friends and families is now a
24-
language between human and computer .
25-
</p>
17+
2618
<p>
2719
Anyone with a smartphone or a computer can start coding in Kalaam. <br />
2820

@@ -34,7 +26,9 @@
3426
<a href="https://www.linkedin.com/in/swanandkadam/"
3527
><img id="Linkedin" src="../assets/Linkedin.png" alt=""
3628
/></a>
37-
<a href="https://www.youtube.com/c/swanandkadam"><img id="youtube" src="../assets/youtube.webp" alt=""/></a>
29+
<a href="https://github.com/Kalaam-Programming-Language/Kalaam"
30+
><img id="github" src="../assets/git.png" alt=""
31+
/></a>
3832

3933
<!--<a href="https://www.instagram.com/swanand_kdm/"><img id="instagram" src="../assets/instagram.png" alt=""></a> -->
4034
</div>
@@ -44,64 +38,17 @@
4438
<div id="faq">
4539
<h3>FAQ'S</h3>
4640

47-
<button v-on:click="showStar4 = !showStar4" type="button" class="collapsible">Why Create Kalaam?</button>
48-
49-
<transition name="slide-fade">
50-
<div v-if="showStar4" class="content">
51-
<div>
52-
<p>
53-
Technology is the next big thing for the growth of India, and programming is how we can make it happen.
54-
India has massive untapped talent in Tier-2 and Tier-3 cities. Most of the students and parents are aware
55-
of how technology is going to shape lives in the future, but they are not even aware of this concept
56-
called computer programming.
57-
58-
<br />
59-
<br />
60-
61-
I have talked to directors of numerous coaching classes in Tier-2 and Tier-3 cities. All shared a similar
62-
concern over programming penetration in such parts of India. We are missing out on the talented ecosystem
63-
of these students just because they believe programming is an out of bound thing for them. Even if they
64-
know about it, it sounds alien to them because of syntax, courses, and unfamiliarity with the learning
65-
process. Since it's completely new territory for them, they either get confused and lose interest or
66-
postpone learning it.
67-
68-
<br />
69-
<br />
70-
71-
Programming needs to reach every part of India if we have to produce more number of quality startups and
72-
technically sound ecosystem. Language and unfamiliarity should not become barriers to these students to
73-
learn to code. Familiarity can make anything more connected, and learning does not seem shallow. What
74-
could be more familiar than the language we used for communication. The language between friends and
75-
families is now a language between human and computer
76-
77-
<br />
78-
<br />
79-
Kalam, a programming language in Hindi, dedicated to Dr. APJ Abdul Kalam, will solve this problem of
80-
improving coding literacy in remote parts of India. Kalaam is the first-ever online programming language
81-
in Hindi and has all the basic functionalities of a modern programming language. Anyone with a smartphone
82-
or a computer can start coding in Kalaam. The syntax and grammar of Kalaam are developed in such a way
83-
that students will find flexibility in adopting other languages too.
84-
85-
<br />
86-
<br />
87-
Kalaam coding environment can also be made offline and installable on the user device. Students can code
88-
for a lifetime on Kalaam without a need for the internet in the next version.
89-
</p>
90-
</div>
91-
</div>
92-
</transition>
93-
9441
<button v-on:click="showStar0 = !showStar0" type="button" class="collapsible">
95-
When will Kalaam become an open source project?
42+
How can I contribute to Kalaam?
9643
</button>
9744

9845
<transition name="slide-fade">
9946
<div v-if="showStar0" class="content">
10047
<div>
10148
<p>
102-
Before going open source, I need to make sure that the code is friendly to read and understand. Most of
103-
this work will include detailed comments for almost every line of code. You can stay updated with the
104-
project on Discord server of the Kalaam or my social media handles.
49+
Kalaam is an open source project and anyone can start contrubuting to it. We have created a
50+
<a href="https://github.com/Kalaam-Programming-Language/Kalaam#readme"> Readme document</a>
51+
on Github repo of kalaam, you will find all the details about contributions there.
10552
</p>
10653
</div>
10754
</div>
@@ -130,9 +77,8 @@
13077
<div v-if="showStar2" class="content">
13178
<div>
13279
<p>
133-
I will be sharing my journey on my Youtube and if you want to get more access to underlying logic, you can
134-
do that when language will be made opens source. Alternatively, you can also join Kalaam discord server
135-
and my instagram handle for real time updates.
80+
Visit <a href="https://github.com/Kalaam-Programming-Language/Kalaam">Github repo</a> of Kalaam to explore
81+
the project. The project is well commented at each step and will help you to understand how it works
13682
</p>
13783
</div>
13884
</div>
@@ -189,7 +135,7 @@ export default {
189135
margin-top: 6%;
190136
}
191137
#Section1 {
192-
width: 40%;
138+
width: 50%;
193139
display: flex;
194140
}
195141
@@ -201,6 +147,7 @@ export default {
201147
text-align: left;
202148
width: 90%;
203149
margin-left: 5%;
150+
margin-top: 2%;
204151
}
205152
206153
.content p {
@@ -212,12 +159,12 @@ export default {
212159
}
213160
214161
#KLogo {
215-
width: 50%;
162+
width: 100%;
216163
float: initial;
217164
}
218165
219166
#KLogo img {
220-
width: 50%;
167+
width: 25%;
221168
float: initial;
222169
}
223170
@@ -268,14 +215,14 @@ export default {
268215
}
269216
270217
#sociallinks {
271-
float: left;
218+
align-items: center;
272219
display: flex;
273220
margin-top: 3%;
274221
}
275222
276-
#youtube {
277-
width: 46%;
278-
height: 50px;
223+
#github {
224+
width: 80%;
225+
height: 70px;
279226
cursor: pointer;
280227
}
281228
#instagram {
@@ -338,7 +285,7 @@ a {
338285
z-index: 1;
339286
}
340287
341-
#youtube {
288+
#github {
342289
width: 130%;
343290
height: 50px;
344291
cursor: pointer;

src/views/Practise.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
<div id="output">
127127
<div id="bharatDIV">
128128
<p id="version">
129-
Kalaam - Click On Run to Run Your Program Line by Line
129+
Kalaam - Run Your Program Line by Line
130130
</p>
131131
<p id="CodeStatus" v-if="this.isError == false">{{ TimeTaken }}</p>
132132

@@ -174,7 +174,7 @@
174174

175175
<div id="output">
176176
<div id="bharatDIV">
177-
<p id="version">Kalaam - Your output will be shown here</p>
177+
<p id="version">Kalaam - Code output will be shown here</p>
178178
<p id="CodeStatus" v-if="this.isError == false">{{ TimeTaken }}</p>
179179

180180
<p id="CodeStatus" v-if="this.isError == true">{{ TimeTaken }}</p>
@@ -706,7 +706,7 @@ button:focus {
706706
#version {
707707
margin: 0;
708708
float: left;
709-
color: #92924c;
709+
color: #afaf70;
710710
font-size: 90%;
711711
}
712712

0 commit comments

Comments
 (0)