-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
1196 lines (1060 loc) · 43.8 KB
/
index.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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8" />
<title>Android Club</title>
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css" />
<link rel="stylesheet" href="css/vendor.css" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/carousel.css" />
<link rel="stylesheet" href="css/error.css" />
<link rel="stylesheet" href="css/rc.css" />
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="./images/logo.ico" type="image/x-icon" />
<link rel="icon" href="./logo.ico" type="image/x-icon" />
</head>
<body id="top">
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader" class="dots-jump">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- header
================================================== -->
<header class="s-header">
<div class="row">
<div class="header-logo">
<a class="site-logo" href="index.html">
<img src="images/logo.png" alt="Homepage" />
</a>
</div>
<nav class="header-nav-wrap">
<ul class="header-main-nav">
<li class="current">
<a class="smoothscroll" href="#home" title="home">Home</a>
</li>
<li>
<a class="smoothscroll" href="#about" title="about">About</a>
</li>
<li>
<a class="smoothscroll" href="#ourteam" title="ourteam"
>Our Team</a
>
</li>
<li>
<a class="smoothscroll" href="#ouralumni" title="ouralumni"
>Our Alumni</a
>
</li>
<li>
<a class="smoothscroll" href="#events" title="events">Events</a>
</li>
<li>
<a class="smoothscroll" href="#project" title="projects"
>Projects</a
>
</li>
</ul>
<div class="header-cta">
<a
href="#showcase"
class="btn btn--primary header-cta__btn smoothscroll"
>Get Your App Built</a
>
</div>
</nav>
<!-- end header-nav-wrap -->
<a class="header-menu-toggle" href="#"><span>Menu</span></a>
</div>
</header>
<!-- end header -->
<!-- home
================================================== -->
<section
id="home"
class="s-home target-section"
data-parallax="scroll"
data-image-src="images/bg-2.jpg"
data-natural-width="3000"
data-natural-height="2000"
data-position-y="center"
>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<div class="rc-2021">
<!-- <a href="https://gitcommitted.androidclubvit.com/" target="_blank">
<button class="button">Register for Git Workshop <i class="fas fa-external-link-alt"></i></button>
</a> -->
</div>
<div class="home-content__left">
<h1>
Android Club
<br />
VIT Chennai
</h1>
<h3>The club about Everything Android.</h3>
<div class="rc-2021 discord">
<a href="https://discord.gg/p3p7wuyNhu" class="discord">
<i class="fab fa-discord" aria-hidden="true"></i>
Join our Discord for more info!
</a>
</div>
<div class="home-content__btn-wrap">
<a
href="#ourteam"
class="btn btn--primary home-content__btn smoothscroll"
>
Get Started!
</a>
</div>
</div>
<!-- end home-content__left-->
<div class="home-content__right">
<img
src="images/phone-final.png"
srcset="images/phone-final.png 1x, images/phone-final.png 2x"
alt="image"
/>
</div>
<!-- end home-content__right -->
</div>
<!-- end home-content__main -->
<ul class="home-content__social">
<li>
<a href="https://www.linkedin.com/company/android-club-vitc/"
>Linked In</a
>
</li>
<li>
<a
href="https://www.instagram.com/androidvitc/?utm_medium=copy_link"
>Instagram</a
>
</li>
<li><a href="https://discord.gg/p3p7wuyNhu">Discord</a></li>
</ul>
</div>
<!-- end home-content -->
<a href="#about" class="home-scroll smoothscroll">
<span class="home-scroll__text">Scroll</span>
<span class="home-scroll__icon"></span>
</a>
</section>
<!-- end s-home -->
<!-- about
================================================== -->
<section id="about" class="s-about target-section">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1">Our Objective</h1>
<p class="lead">
The Android Club, VIT Chennai is a Technical club specializing in
Android App Development. Our objective is to help the students learn
how to start with the basics of Android Development and progress
towards building full fledged applications.
</p>
</div>
</div>
<!-- end section-header -->
<div class="row wide about-desc" data-aos="fade-up">
<div class="col-full slick-slider about-desc__slider">
<div class="about-desc__slide">
<h3 class="item-title">Intuitive.</h3>
<p>
Create apps that are user friendly,and easy to use. Helping
customers understand how to use it without much effort
</p>
</div>
<!-- end about-desc__slide -->
<div class="about-desc__slide">
<h3 class="item-title">Adabtable.</h3>
<p>
Personalized content is trending so why shouldn't your app. We
help you adapt content to the abilities and knowledge level of the
user.
</p>
</div>
<!-- end about-desc__slide -->
<div class="about-desc__slide">
<h3 class="item-title">Secured.</h3>
<p>
Create apps according to latest security standards. We follow
protocols and runs security checklist before deployment of apps.
</p>
</div>
<!-- end about-desc__slide -->
<div class="about-desc__slide">
<h3 class="item-title">Cross Platform.</h3>
<p>
Don’t go by the name. Our apps are not just restricted to android,
but we develop apps for iOS platforms too.
</p>
</div>
<!-- end about-desc__slide -->
</div>
<!-- end about-desc__slider -->
</div>
<!-- end about-desc -->
</section>
<!-- end s-about -->
<!-- Our Team
================================================== -->
<section id="ourteam" class="s-features target-section">
<div class="ourteam-wrap" data-aos="fade-up">
<div class="row">
<div class="col-full ourteam-header">
<h2 class="display-2">Our Team</h2>
</div>
</div>
<div class="row ourteam">
<div class="col-full slick-slider ourteam__slider">
<div class="ourteam__slide">
<h3 class="item-title">Secretary</h3>
<img
src="images/avatars/core_2023/atharv.png"
alt="Author image"
class="ourteam__avatar"
/>
<p>
A man with passion and compassion at the same time. Truly a
person who can drive multiple forces towards the GOAL. I am sure
your abilities will drive Android Club towards a successful and
fulfilling journey ahead full of triumph and achievements✨.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Athrav Agarwal</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Joint Secretary</h3>
<img
src="images/avatars/core_2023/ekta.png"
alt="Author image"
class="ourteam__avatar"
/>
<p>
Ekta is the person who has the desire to run the club and make
it successful. Her enthusiasm is just next level. She also has
this magic to make people comfortable around her.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Ekta Saraf</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Joint Secretary</h3>
<img
src="images/avatars/core_2023/shubham.png"
alt="Author image"
class="ourteam__avatar"
/>
<p>
Shubham's passion towards his work is something to look up to.
He has the capability to make the club more awesome, just like
his UI designs.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Shubham Singh</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Operations Lead</h3>
<img
src="images/avatars/core_2023/sparsh.png"
alt="Author image"
class="ourteam__avatar"
/>
<p>
Sparsh is always full of life, no matter the situation. He has
his way of captivating people whom he talks with. Hence I can
surely say that he will handle operations well.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Sparsh Kandpal</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Design Lead</h3>
<img
src="images/avatars/core_2023/aditya.png"
alt="Author image"
class="ourteam__avatar"
/>
<p>
Aditya showcased his incredible designing skills from day 1 and
his motivation and drive for the club is what made me believe he
would make an incredible Design Lead.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Aditya Raj Srivastava</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Marketing Head</h3>
<img
src="images/avatars/core_2023/shrestha.png"
alt="Author image"
class="ourteam__avatar"
/>
<p>
As they all say "the face of marketing" deserved to be Android
Club's Marketing Head. One thins is for sure she is gonna get
more resitrations that ever before.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Shrestha Singh</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Sponsorship Head</h3>
<img
src="images/avatars/core_2023/kushagra.png"
alt="Author image"
class="ourteam__avatar"
/>
<p>
One who couldn't have been left behind. A proper team man and
smartness that would take care of experience part. The guarantee
card to get big whooping deals.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Kushagra Garg</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Management Head</h3>
<img
src="images/avatars/core_2023/karthik.png"
alt="Author image"
class="ourteam__avatar"
/>
<p>
Karthik possesses outstanding communication skills, a remarkable
presence of mind, and a quick wit. His ability to stay calm
under pressure makes him an excellent individual to ensure
smooth operations and effective leadership.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Karthik R</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Social media and content lead</h3>
<img
src="images/avatars/core_2023/tushar.png"
alt="Author image"
class="ourteam__avatar"
/>
<p>
Tushar's pleasant demeanour and splash of imagination is why
people want to learn more about everything he talks about and
what convinces me that he would make a fantastic social media
and content lead.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Tushar Chopra</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Tech Lead</h3>
<img
src="images/avatars/core_2023/geoffrey.png"
alt="Author image"
class="ourteam__avatar"
/>
<p>
Strong technical knowledge but more importantly approachable and
willing to help others.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Geoffrey Anto</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Tech Lead</h3>
<img
src="images/avatars/core_2023/pranshu.jpeg"
alt="Author image"
class="ourteam__avatar"
/>
<p>
A person who comes across as sensible, friendly and has a very
sound technical knowledge.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Pranshu Aggarwal</span>
</div>
</div>
</div>
<!-- end ourteam__slider -->
</div>
<!-- end ourteam -->
</div>
<!-- end ourteam-wrap -->
</section>
<!-- end s-features -->
<!-- Our Alumni
================================================== -->
<section id="ouralumni" class="s-features target-section">
<div class="ouralumni-wrap" data-aos="fade-up">
<div class="row">
<div class="col-full ouralumni-header">
<h2 class="display-2">Our Alumni</h2>
</div>
</div>
<div class="row ouralumni">
<div class="col-full slick-slider ourteam__slider">
<!-- <div class="ourteam__slide">
<h3 class="item-title">President</h3>
<img src="images/avatars/our_team/Abhishek.jpeg" alt="Author image" class="ourteam__avatar">
<p>He has been a part of this club since his first year, got the opportunity to learn a lot
from our seniors, and has imbibed many of their qualities. He doesn’t speak much but his
actions surely speak volumes. His calm and steady nature has inspired and held the club
together. Maybe that’s why his favorite quote is “let’s meditate”.</p>
<div class="ourteam__author">
<span class="ourteam__name">Abhishek Soni</span>
</div>
</div> -->
<div class="ourteam__slide">
<h3 class="item-title">Ex-President</h3>
<img
src="images/avatars/core_2022/shivam2.jpg"
alt="Author image"
class="ourteam__avatar"
/>
<p>
Shivam has an incredible thirst for learning practical skills.
He will achieve the thing once he sets his mind on it, be it
learning a new software within a day or two, or going for a ride
to a completely different state. His dedication towards his work
is just next level. And this is exact the reason why we need a
leader like him.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Shivam Akhouri</span>
</div>
</div>
<!-- end ourteam__slide -->
<!-- <div class="ourteam__slide">
<h3 class="item-title">Vice President</h3>
<img src="images/avatars/our_team/neelesh.jpg" alt="Author image" class="ourteam__avatar">
<p>2 AM or 2 PM, he is always there to solve any issue you have. He makes your errors his
own so feel free to annoy the hell out of him (PS I hope he doesn’t get angry at you).
His knowledge is way beyond the boundaries of Tech so don’t mistake him for just a nerdy
geek.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Neelesh ranjan Jha</span>
</div>
</div> -->
<div class="ourteam__slide">
<h3 class="item-title">Ex-Vice President</h3>
<img
src="images/avatars/core_2022/vidhi.jpeg"
alt="Author image"
class="ourteam__avatar"
/>
<p>
Her clutch on organizing an event is just JEDI level. One thing
you should be sure about having her on the team is that work
will be done and dusted smoothly. Be it multitasking, management
or staying calm and efficient, she is supple to fit in all these
roles simultaneously. Don’t judge her by her habit of preparing
Maggie at 2 AM…XD. Her mindful actions and critical
decision-making skills have brought her where she is now.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Vidhi Ajbani</span>
</div>
</div>
<!-- end ourteam__slide -->
<!-- <div class="ourteam__slide">
<h3 class="item-title">Vice President Management</h3>
<img src="images/avatars/our_team/Ritesh.jpg" alt="Author image" class="ourteam__avatar">
<p>He could be described as one of the most zestful members of our core. His expertise has
impressed many(hopefully). One day you will find him coding the other day designing a
poster. He doesn't believe in mediocrity so gear up and give your best. The best way to
bribe him is with a bottle of “Thums UP” and maybe play valorant with him.</p>
<div class="ourteam__author">
<span class="ourteam__name">Ritesh</span>
</div>
</div> end ourteam__slide -->
<!-- <div class="ourteam__slide">
<h3 class="item-title">General Secretary</h3>
<img src="images/avatars/our_team/Shraddha.jpeg" alt="Author image" class="ourteam__avatar">
<p>She is a perfectionist, so it’s either her way or the highway. She won’t hesitate to be
the bad cop just to get the work done, That’s why every event is incomplete without her.
Her skills are exclusive and exquisite. Her adventurous nature has taken this club to a
whole new level. Let’s NOT Jinx it.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Shraddha Mehta</span>
</div>
</div> -->
<div class="ourteam__slide">
<h3 class="item-title">Ex-Operations Lead</h3>
<img
src="images/avatars/core_2022/krishna.jpg"
alt="Author image"
class="ourteam__avatar"
/>
<p>
The calmest guy you’ll ever meet, he’s the type of guy to never
lose his cool. Hates seriousness but when it comes to work, he’s
the most serious guy around. He’s very reliable and will always
have your back. Things are never not fun when he’s around. ;)
</p>
<div class="ourteam__author">
<span class="ourteam__name">Krishna Kumar</span>
</div>
</div>
<!-- end ourteam__slide -->
<!-- <div class="ourteam__slide">
<h3 class="item-title">General Secretary</h3>
<img src="images/avatars/our_team/Shreya_Roy.jpg" alt="Author image" class="ourteam__avatar">
<p>She tries to make sense of all the chaos around us. Her patience is beyond our
understanding. It’s not that easy to infuriate her so if she is angry at you “What have
you done??”. She is basically an introvert but once you get to know her she is really an
amazing person and maybe a tad bit annoying (just kidding).
</p>
<div class="ourteam__author">
<span class="ourteam__name">Shreya Roy</span>
</div>
</div> -->
<!-- end ourteam__slide -->
<div class="ourteam__slide">
<h3 class="item-title">Ex-Design Lead</h3>
<img
src="images/avatars/core_2022/dhruvi.jpg"
alt="Author image"
class="ourteam__avatar"
/>
<p>
An extremely cooperative and consistent person, her best trade
surely has to be getting the job done with high efficiency in a
limited time and blending in well with people. Is serious about
work but is as fun loving and reliable as a person can get.
Dhruvi surely knows how to get stuff done
</p>
<div class="ourteam__author">
<span class="ourteam__name">Dhruvi Ochani</span>
</div>
</div>
<!-- end ourteam__slide -->
<div class="ourteam__slide">
<h3 class="item-title">Ex-Partnership and Marketing</h3>
<img
src="images/avatars/core_2022/rahul.jpg"
alt="Author image"
class="ourteam__avatar"
/>
<p>
Although it may not seem like it, he has a lot of ideas on a lot
of things, so its always good to consult him. He loves
challenges, so feel free to throw your problems at him.Patience
is not his forte so you’ll be on your toes. A big admirer of
Virat Kohli, so keep your ears ready for a few Ben Stokes! xD
</p>
<div class="ourteam__author">
<span class="ourteam__name">Rahul Gandhi</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Ex-Management Head</h3>
<img
src="images/avatars/core_2022/aniket.jpg"
alt="Author image"
class="ourteam__avatar"
/>
<p>
Call him whenever you need and he will be ready to help you out.
The only drawback about him is that he can’t say NO. His amiable
nature makes people rely on him. Whenever he takes upon the duty
of getting work done, he will do it again and again till
perfection is achieved. His lively nature lights up the mood of
the whole team.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Aniket Kulkarni</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Ex-Social media and content lead</h3>
<img
src="images/avatars/core_2022/anegha.jpeg"
alt="Author image"
class="ourteam__avatar"
/>
<p>
She’s a trustworthy and helpful person. She can be quite
sometimes but has a loud mind. When she’s not lost in her
fantasy world she’s all ears to new ideas and anything you wanna
talk about.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Anegha Jain</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Ex-Tech Design Lead</h3>
<img
src="images/avatars/core_2022/shreyansh.png"
alt="Author image"
class="ourteam__avatar"
/>
<p>
People often mess up when they're impatient and that's why he's
there for you to calm you down.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Shreyansh Agrawal</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Ex-Tech Development Lead</h3>
<img
src="images/avatars/core_2022/hareesh.JPG"
alt="Author image"
class="ourteam__avatar"
/>
<p>
There's not much to say about Hareesh, he loves engineering, but
not as much as 💀 or 👀. He's always willing to help and explain
things in detail, almost to a fault, but only if you'll meet him
at the library, because air conditioning and cold water are top
priorities. He can be super cringey and make lame jokes at
times, so consider yourself warned!
</p>
<div class="ourteam__author">
<span class="ourteam__name">Hareesh Teja S</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Ex-Tech Content Lead</h3>
<img
src="images/avatars/core_2022/satyam.jpg"
alt="Author image"
class="ourteam__avatar"
/>
<p>
An adaptable and driven individual who enjoys meeting new
individuals and learning about all things tech.
</p>
<div class="ourteam__author">
<span class="ourteam__name">Satyam Singh</span>
</div>
</div>
<!-- end ourteam__slide -->
<!-- <div class="ourteam__slide">
<h3 class="item-title">WorkForce Lead</h3>
<img src="images/avatars/our_team/Shrimayee.jpeg" alt="Author image" class="ourteam__avatar">
<p>She is one of the sweetest people you will ever meet but don’t ever think that’s her
weakness cause well if you get on her bad side, Oops!!. She is brilliant at multitasking,
solving complex issues is like a piece of cake for her. Hard work and dedication have got
her where she is now and that’s what keeps her grounded to her roots.</p>
<div class="ourteam__author">
<span class="ourteam__name">Shrimayee Deshpande</span>
</div>
</div> -->
<!-- end ourteam__slide -->
<!-- <div class="ourteam__slide">
<h3 class="item-title">Tech Lead</h3>
<img src="images/avatars/our_team/naman.jpg" alt="Author image" class="ourteam__avatar">
<p> His grasp on technology is just great( NO PUN INTENDED). There is nothing he doesn’t
have the answer to, and if he doesn’t he will surely find the answer and get back to
you. Apart from coding, Life for him is all about quoting The Office and hence,
“Sometimes I’ll start a sentence and I don’t even know where it’s going. I just hope I
find it along the way ”.</p>
<div class="ourteam__author">
<span class="ourteam__name">Naman Agarwal</span>
</div>
</div>
<div class="ourteam__slide">
<h3 class="item-title">Operations Lead</h3>
<img src="images/avatars/img_avatar1.png" alt="Author image" class="ourteam__avatar">
<p>One thing we know about him for sure is he can get the work done. He masters the cards he
is dealt with in every situation to make the best out of it. His critical thinking is
one of the reasons our club has the persona it does today. His judgment and execution
skills are exemplary. No doubt all our events are a success!!
</p>
<div class="ourteam__author">
<span class="ourteam__name">Tom</span>
</div>
</div> -->
</div>
<!-- end ourteam__slider -->
</div>
<!-- end ouralumni -->
</div>
<!-- end ouralumni-wrap -->
</section>
<!-- end s-features -->
<!-- events
================================================== -->
<section id="events" class="s-events target-section">
<div class="row section-header align-center" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1">Our Events <br /></h1>
<p class="lead">
Android Club has conducted various events through out it's history.
These are some highlights of such events.
</p>
</div>
</div>
<!-- end section-header -->
<div class="slider_container">
<div class="slider">
<div class="slide slide1">
<div class="caption">
<h2 class="slider_title">Tetraflip 2021</h2>
<p class="caption_p">
The Flagship Hackathon Organized by Android Club and OWASP
Student Chapter.
</p>
</div>
</div>
<div class="slide slide2">
<div class="caption">
<h2 class="slider_title">Treasure Scan</h2>
<p class="caption_p">
A Treasure Hunt Event organized by Android Club in the Vibrance
College Fest.
</p>
</div>
</div>
<div class="slide slide3">
<div class="caption">
<h2 class="slider_title">2020 HackerEarth Hackathon</h2>
<p class="caption_p">
One of the Major Hackathon organized by Android Club and OWASP
Student Chapter in 2020.
</p>
</div>
</div>
<div class="slide slide4">
<div class="caption">
<h2 class="slider_title">Own Your Turf</h2>
<p class="caption_p">
Own Your Turf was a team event organized by Android Club during
the Vibrance College Fest.
</p>
</div>
</div>
</div>
</div>
<!-- end carousel-->
</section>
<!-- end s-events -->
<!-- project
================================================== -->
<section
id="project"
class="s-pricing target-section"
style="background-color: #d6d6d6"
>
<div class="row section-header align-center" data-aos="fade-up">
<div class="col-full">
<br />
<br />
<h1 class="display-1_1">Our Projects</h1>
</div>
</div>
<!-- end section-header -->
<div class="row plans block-1-2 block-m-1-2 block-tab-full stack">
<div class="col-block item-plan item-plan--popular" data-aos="fade-up">
<div class="item-plan__block">
<div class="item-plan__top-part">
<img
src="images/project/textfi.png"
alt="textfi.png"
width="300"
height="250"
/>
<h3 class="item-title" style="color: white">TextFi</h3>
</div>
<div class="item-plan__bottom-part">
<p class="item-plan__per">
TextFi is an application built focusing on keeping your online
identity anonymous. Hidden usernames to complex room codes, all
your conversations would be kept secret on this platform.
</p>
<br />
<br />
<a
class="btn btn--primary large full-width"
href="https://play.google.com/store/apps/details?id=com.textfi"
>Get Link</a
>
</div>
</div>
</div>
<!-- end item-plan -->
<div class="col-block item-plan item-plan--popular" data-aos="fade-up">
<div class="item-plan__block">
<div class="item-plan__top-part">
<img
src="images/project/timely.png"
alt="timly.png"
width="300"
height="250"
/>
<h3 class="item-title" style="color: white">TimeLy</h3>
</div>
<div class="item-plan__bottom-part">
<p class="item-plan__per">
TimeLy is a TimeTable organization application which helps you
save your class schedule.
</p>
<br />
<br />
<br />
<a
class="btn btn--primary large full-width"
href="https://play.google.com/store/apps/details?id=com.androidclub.timely"
>Get Link</a
>
</div>
</div>
</div>
<!-- end item-plan -->
<div
class="col-block item-plan item-plan--popular"
data-aos="fade-up"
style="align-self: center"
>
<div class="item-plan__block">
<div class="item-plan__top-part">
<img
src="images/project/savemydates.png"
alt="savemydates.png"
width="300"
height="250"
/>
<h3 class="item-title" style="color: white">SaveMyDates</h3>
</div>
<div class="item-plan__bottom-part">
<p class="item-plan__per">
An App that can save all types of to-do/dates for you, leading
to an easy productivity boost. It supports a feature called
public space that allows users to share their to-do among other
app users and also maintains a personal space.
</p>
<br />
<br />
<a
class="btn btn--primary large full-width"
href="https://play.google.com/store/apps/details?id=com.savemydates"
>Get Link</a
>
</div>
</div>
</div>
<!-- end item-plan -->
</div>
<!-- end plans -->
</section>
<!-- end s-project -->
<!-- showcase
================================================== -->
<section id="showcase" class="s-showcase target-section">
<div class="row section-header align-center" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1">Have an Idea ?</h1>
<p class="lead">Get your idea transformed into an app</p>
</div>
</div>