-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1227 lines (1200 loc) · 47.9 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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- HTTP Redirection -->
<link rel="canonical" href="https://teamtigers.tech" />
<!-- Preconnec
t -->
<link rel="preconnect" href="https://connect.facebook.net" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<!-- Primary Meta Tags -->
<title>TeamTigers</title>
<link rel="icon" href="assets/logo/teamtigers512.png" />
<meta property="og:image" content="assets/img/social.png" />
<meta name="TeamTigers" content="TeamTigers - Your next dream maker" />
<meta
name="description"
content="A group of individuals who are dedicated to deliver you the best application"
/>
<meta
name="keywords"
content="teamtigers, team, teamtigers.github.io, teamtigers.tech, টিমটাইগার্স, teamtigers github, teamtigers company, teamtigers it farm, it farm, it, tech"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://teamtigers.tech" />
<meta property="og:title" content="TeamTigers - Your next dream maker" />
<meta
property="og:description"
content="A group of individuals who are dedicated to deliver you the best application"
/>
<meta property="og:image" content="https://i.imgur.com/STVZtuu.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://teamtigers.tech" />
<meta
property="twitter:title"
content="TeamTigers - Your next dream maker"
/>
<meta
property="twitter:description"
content="A group of individuals who are dedicated to deliver you the best application"
/>
<meta property="twitter:image" content="https://i.imgur.com/STVZtuu.png" />
<!-- Fonts -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Google+Sans"
/>
<!-- Materialize css -->
<link rel="stylesheet" href="assets/css/materializecss.min.css" />
<!-- Icon -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- Dev Icons -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/konpa/devicon@master/devicon.min.css"
/>
<!-- Custom css -->
<link rel="stylesheet" href="assets/css/style.min.css" />
<!-- carousel css -->
<link rel="stylesheet" href="assets/css/slick.css" />
<link rel="stylesheet" href="assets/css/slick-theme.css" />
<!-- Manifest -->
<link rel="manifest" href="manifest.json" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="application-name" content="TeamTigers" />
<meta name="apple-mobile-web-app-title" content="TeamTigers" />
<meta name="theme-color" content="#1a73e9" />
<meta name="msapplication-navbutton-color" content="#1a73e9" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="msapplication-starturl" content="/index.html" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="icon" sizes="128x128" href="assets/logo/teamtigers128.jpg" />
<link
rel="apple-touch-icon"
sizes="128x128"
href="assets/logo/teamtigers128.jpg"
/>
<link rel="icon" sizes="192x192" href="assets/logo/teamtigers192.png" />
<link
rel="apple-touch-icon"
sizes="192x192"
href="assets/logo/teamtigers192.png"
/>
<link rel="icon" sizes="256x256" href="assets/logo/teamtigers256.jpg" />
<link
rel="apple-touch-icon"
sizes="256x256"
href="assets/logo/teamtigers256.jpg"
/>
<link rel="icon" sizes="384x384" href="assets/logo/teamtigers384.png" />
<link
rel="apple-touch-icon"
sizes="384x384"
href="assets/logo/teamtigers384.png"
/>
<link rel="icon" sizes="512x512" href="assets/logo/teamtigers512.png" />
<link
rel="apple-touch-icon"
sizes="512x512"
href="assets/logo/teamtigers512.png"
/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-164180702-2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-164180702-2");
</script>
</head>
<body>
<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function () {
FB.init({
xfbml: true,
version: "v8.0",
});
};
(function (d, s, id) {
var js,
fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js";
fjs.parentNode.insertBefore(js, fjs);
})(document, "script", "facebook-jssdk");
</script>
<!-- Your Chat Plugin code -->
<div
class="fb-customerchat"
attribution="setup_tool"
page_id="316709322219975"
logged_in_greeting="Hi! How can we help you?"
logged_out_greeting="Hi! How can we help you?"
></div>
<!-- Your Chat Plugin code -->
<header>
<!-- Fixed navbar -->
<div class="navbar-fixed">
<nav class="nav-extended white z-depth-0">
<div class="nav-wrapper">
<a rel="noreferrer" href="#home" class="brand-logo">
<img src="assets/img/TeamTigers_2.webp" alt="logo" />
</a>
<a
rel="noreferrer"
href="#"
data-target="mobile-demo"
class="sidenav-trigger"
><i class="material-icons black-text">menu</i></a
>
<ul class="right hide-on-med-and-down">
<li class="active">
<a
rel="noreferrer"
class="hover-underline-animation scroll"
href="#home"
>Home</a
>
</li>
<li>
<a
rel="noreferrer"
class="hover-underline-animation scroll"
href="#about_us"
>About Us</a
>
</li>
<li>
<a
rel="noreferrer"
class="hover-underline-animation scroll"
href="#services"
>Services</a
>
</li>
<li>
<a
rel="noreferrer"
class="hover-underline-animation scroll"
href="#projects"
>Projects</a
>
</li>
<li>
<a
rel="noreferrer"
class="hover-underline-animation scroll"
href="#why_us"
>Why Us</a
>
</li>
<li>
<a
rel="noreferrer"
class="hover-underline-animation scroll"
href="#clients"
>Clients</a
>
</li>
<li>
<a
rel="noreferrer"
class="hover-underline-animation scroll"
href="#team"
>Team</a
>
</li>
<li>
<a
rel="noreferrer"
class="hover-underline-animation scroll"
href="#contact_us"
>Contact Us</a
>
</li>
</ul>
</div>
</nav>
</div>
<ul class="sidenav" id="mobile-demo">
<li><a rel="noreferrer" href="#home">Home</a></li>
<li><a rel="noreferrer" href="#about_us">About Us</a></li>
<li><a rel="noreferrer" href="#services">Services</a></li>
<li><a rel="noreferrer" href="#projects">Projects</a></li>
<li><a rel="noreferrer" href="#why_us">Why Us</a></li>
<li><a rel="noreferrer" href="#clients">Clients</a></li>
<li><a rel="noreferrer" href="#team">Team</a></li>
<li><a rel="noreferrer" href="#contact_us">Contact Us</a></li>
</ul>
</header>
<!-- MAIN CONTENT STARTS -->
<main>
<div class="customContainer">
<!-- HOME SECTION STARTS -->
<div id="home">
<div class="row">
<div class="col s12 m6 l6 banner-section">
<h1 class="banner-header">
We'll provide you the<br />
<span
class="typewrite"
data-period="300"
data-type='[ "eye catching design", "secured application", "latest technology"]'
><span class="wrap"></span
></span>
</h1>
<p class="flow-text description">
Hello! If you are looking for someone or a team to build you a
secured, cool looking and fast application then you are in right
place.
</p>
<a rel="noreferrer" href="#about_us" class="btn more-btn"
><span>Learn more</span></a
>
</div>
<div class="col s12 m6 l6">
<img
id="banner-svg"
src="assets/img/svg/banner.svg"
alt="banner"
class="responsive-img banner"
/>
</div>
</div>
</div>
</div>
<!-- HOME SECTION ENDS -->
<div class="container">
<!-- ABOUT US SECTION STARTS -->
<div class="section">
<div id="about_us">
<h2 class="center">About us</h2>
<div class="row">
<div class="col s12 m6 l5">
<img
src="assets/img/svg/teams-pana.svg"
alt="collaboration"
class="responsive-img"
/>
</div>
<div class="col s12 m6 l7">
<p class="description details">
Our team is a group of individuals looking to create amazing
pieces of work. Our motto is to bring elegant & new tastes of
UI, faster performance system. We will try our best to give
you a better output.
</p>
<p class="description details">
We code to develop not only software but to make life and work
easier and comfortable. The motto we bear is to take our
country at the top of networking world. Programming is not
just coding, its a passion we have that makes us do things
more sophisticatedly. We try to build things that can be
utilized in many ways which is called re-usability that makes
things faster, smarter and better.
</p>
<p class="description details">
We can't wait to work with you because you will love to work
with us.
</p>
</div>
</div>
</div>
</div>
<!-- ABOUT US SECTION ENDS -->
<!-- SERVICE SECTION STARTS -->
<div class="section">
<div id="services">
<h2 class="center">Our services</h2>
<div class="row">
<div class="col s12 m6 l5">
<div class="col s12 m6 l6">
<div class="rounded card center">
<div class="card-content">
<i class="material-icons web">web</i>
<h5>Website Development</h5>
</div>
</div>
</div>
<div class="col s12 m6 l6">
<div class="rounded card center">
<div class="card-content">
<i class="material-icons phone">phone_iphone</i>
<h5>Mobile Application</h5>
</div>
</div>
</div>
<div class="col s12 m6 l6">
<div class="rounded card center">
<div class="card-content">
<i class="material-icons color">color_lens</i>
<h5>UI/UX Design</h5>
</div>
</div>
</div>
<div class="col s12 m6 l6">
<div class="rounded card center">
<div class="card-content">
<i class="material-icons consult">person_pin</i>
<h5>Technical Consultation</h5>
</div>
</div>
</div>
</div>
<div class="col s12 m6 l7">
<p class="description details">
We promise you a new look and more importantly, a new
attitude. We build that by getting to know you, your needs and
creating the best looking website and mobile design and most
bug free development. We use the latest technology to cope up
with the never ending world tech.
</p>
<p class="description details">
We have expertise to work with latest web application like
Progressive Web App (PWA). We guarantee you to deliver the
best and secured application as your requirements.
</p>
<p class="description details">
Programming/Markup Language that we work on are
<b>JavaScript, Python, Dart, C#, C++, HTML, CSS.</b> For
framework or library we mostly use are
<b>.NET Core, Flutter, django, ExpressJS, ReactJS</b> . CSS
framework we use are
<b>Materializecss, Bootstrap, TailwindCSS</b>
</p>
<br />
<p>
<i class="devicon-html5-plain-wordmark colored dev-icon"></i>
<i class="devicon-css3-plain-wordmark colored dev-icon"></i>
<i class="devicon-javascript-plain colored dev-icon"></i>
<i class="devicon-csharp-plain-wordmark colored dev-icon"></i>
<i
class="devicon-cplusplus-plain-wordmark colored dev-icon"
></i>
<i class="devicon-nodejs-plain-wordmark colored dev-icon"></i>
<i
class="devicon-dot-net-plain-wordmark colored dev-icon"
></i>
<i
class="devicon-express-original-wordmark colored dev-icon"
></i>
<i class="devicon-docker-plain-wordmark colored dev-icon"></i>
<i class="devicon-angularjs-plain colored dev-icon"></i>
<i class="devicon-git-plain-wordmark colored dev-icon"></i>
<i class="devicon-jquery-plain-wordmark colored dev-icon"></i>
<i
class="devicon-mongodb-plain-wordmark colored dev-icon"
></i>
<i class="devicon-mysql-plain-wordmark colored dev-icon"></i>
<i class="devicon-oracle-original colored dev-icon"></i>
<i class="devicon-python-plain-wordmark colored dev-icon"></i>
<i
class="devicon-react-original-wordmark colored dev-icon"
></i>
<i class="devicon-sass-original colored dev-icon"></i>
</p>
</div>
</div>
</div>
</div>
<!-- SERVICE SECTION ENDS -->
<!-- PROJECT SECTION STARTS -->
<div class="section">
<div id="projects">
<h2 class="center">Projects</h2>
<div class="row">
<div class="col s12 m6 l4">
<div class="rounded card">
<!-- <div class="card-image">
<img
src="assets/img/projects/coronainfobd.webp"
alt="coronainfobd"
/>
</div> -->
<div class="card-content">
<span class="card-title">Inventory System</span>
<p class="description">
A pos system to manage small and mid level shop. This
system consists of more than twenty features including
proper authentication, role management. It also provides
nine types of different report.
</p>
<br />
<a
rel="noreferrer"
class="waves-effect btn btn-small"
href="#"
disabled
target="_blank"
><i class="material-icons right">launch</i>Live Demo</a
>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-content">
<span class="card-title">Aristocrat Inn</span>
<p class="description">
We re-designed the whole application of
<b>Hotel Aristocrat Inn</b> from scratch and converted the
older version to VueJs. Customers can book any room
through email.
</p>
<br />
<a
rel="noreferrer"
class="waves-effect btn btn-small"
href="https://aristocratinnltd.com/"
target="_blank"
><i class="material-icons right">launch</i>Live Demo</a
>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-content">
<span class="card-title">Bareleaf</span>
<p class="description">
Canada based client wanted to make a website by which he
can export goods made in Bangladesh to Canada. The website
has trading part as well as solutions part. The project
was made with Vuejs and Firebase.
</p>
<br />
<a
rel="noreferrer"
class="waves-effect btn btn-small"
href="https://bareleaf.ca/"
target="_blank"
><i class="material-icons right">launch</i>Live Demo</a
>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-content">
<span class="card-title">Garments Maker LTD</span>
<p class="description">
Garments Maker LTD is a registered garment company which
wanted to start their online profile. We've built a
website for them where they can share their products,
client and history
</p>
<br />
<a
rel="noreferrer"
class="waves-effect btn btn-small"
href="https://gml-user.themebuysell.com/"
target="_blank"
><i class="material-icons right">launch</i>Live Demo</a
>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-content">
<span class="card-title">CoronaInfoBD</span>
<p class="description">
Real-time corona-virus tracker of Bangladesh bangladesh
which includes latest updates, data visualization, public
awareness from WHO and some advice to aware people.
</p>
<br />
<a
rel="noreferrer"
class="waves-effect btn btn-small"
href="https://teamtigers.github.io/coronainfobd"
target="_blank"
><i class="material-icons right">launch</i>Live Demo</a
>
<a
rel="noreferrer"
class="secondary-link"
href="https://github.com/TeamTigers/coronainfobd"
target="_blank"
>Github repo</a
>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="rounded card">
<!-- <div class="card-image">
<img src="assets/img/projects/cuntato.webp" alt="cuntato" />
</div> -->
<div class="card-content">
<span class="card-title">Cuntato</span>
<p class="description">
An easy and secured solution to get messages from contact
form of static or dynamic websites and display all the
messages in a table which can be copied and downloaded as
.csv, .xlsx and .pdf file.
</p>
<br />
<a
rel="noreferrer"
class="waves-effect btn btn-small"
href="https://cuntato.herokuapp.com/"
target="_blank"
><i class="material-icons right">launch</i>Live Demo</a
>
<a
rel="noreferrer"
class="secondary-link"
href="https://github.com/pro-js/cuntato"
target="_blank"
>Github repo</a
>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-content">
<span class="card-title">Minisauras</span>
<p class="description">
An open-source CI/CD automation tool based on GitHub
Actions that pulls all the JavaScript and CSS files from
your base branch, minify them and creates a pull-request
with a new branch.
</p>
<br />
<a
rel="noreferrer"
class="waves-effect btn btn-small"
href="https://github.com/marketplace/actions/minisauras"
target="_blank"
><i class="material-icons right">launch</i>Live Demo</a
>
<a
rel="noreferrer"
class="secondary-link"
href="https://github.com/TeamTigers/minisauras"
target="_blank"
>Github repo</a
>
</div>
</div>
</div>
</div>
<div class="row">
<div class="center-align">
<a
rel="noreferrer"
class="waves-effect waves-light btn more-btn"
href="https://github.com/TeamTigers"
target="_blank"
>Discover more</a
>
</div>
</div>
</div>
</div>
<!-- PROJECT SECTION ENDS -->
<!-- WHY US SECTION STARTS -->
<div class="section">
<div id="why_us">
<h2 class="center">Why us?</h2>
<div class="row">
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-content">
<!-- <div class="card-design"></div> -->
<h5 class="blue-text text-darken-4">
<i class="material-icons left blue-text text-darken-4"
>beenhere</i
>Hire top experts
</h5>
<p class="description details">
We are a fully fledged freelancing team with -
</p>
<div class="featureList">
<div class="featureList_item">UI/UX Researchers</div>
<div class="featureList_item">Cool Frontend Devs</div>
<div class="featureList_item">
REST/GraphQL Programmers
</div>
<div class="featureList_item">DevOps Engineers</div>
<div class="featureList_item">
Machine Learning Engineer
</div>
</div>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-content">
<!-- <div class="card-design"></div> -->
<h5 class="blue-text text-darken-4">
<i class="material-icons left blue-text text-darken-4"
>group</i
>
We're supportive
</h5>
<p class="description details">
We do care about your business. We ensure you -
</p>
<div class="featureList">
<div class="featureList_item">Fast communication</div>
<div class="featureList_item">
Sustainable and easy to scale products
</div>
<div class="featureList_item">
Affordable but high quality products
</div>
<div class="featureList_item">
Delivery within deadlines
</div>
<div class="featureList_item">
Innovative and cutting-edge solutions
</div>
</div>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-content">
<!-- <div class="card-design"></div> -->
<h5 class="blue-text text-darken-4">
<i class="material-icons left blue-text text-darken-4"
>assistant</i
>
Unstoppable talents
</h5>
<p class="description details">
We don't just learn, we apply them too. Our members have
active participation in -
</p>
<div class="featureList">
<div class="featureList_item">
International Flutter Hackathon
</div>
<div class="featureList_item">
GitHub Actions Hackathon
</div>
<div class="featureList_item">
Microsoft Azure Champions League
</div>
<div class="featureList_item">Hactoberfest</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- WHY US SECTION ENDS -->
<!-- ACTIVITIES SECTION STARTS -->
<div class="section">
<div id="clients">
<h2 class="center">Clients</h2>
<div class="grid row">
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-image">
<img
alt="hack20"
class="tooltipped"
data-position="bottom"
data-tooltip="Aristocrat INN"
src="https://firebasestorage.googleapis.com/v0/b/lite-weight-materials.appspot.com/o/aristocrat%2Fcommon%2Flogo-horizontal.svg?alt=media&token=c9bab20f-d2b6-4321-a1ff-672bb140c0ff"
style="height: 10rem"
/>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-image">
<img
alt="grameenphone"
style="height: 10rem"
class="tooltipped"
data-position="bottom"
data-tooltip="Bareleaf"
src="https://firebasestorage.googleapis.com/v0/b/bareleaf-admin.appspot.com/o/logo-removebg.png?alt=media&token=ed98e02a-ae33-4abf-b217-c959eff8e116"
/>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-image">
<img
alt="msft"
style="height: 10rem"
class="tooltipped"
data-position="bottom"
data-tooltip="Cosmic Gallery"
src="https://admin.cosmicgallery.store/icon-512x512.png"
/>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="rounded card">
<div class="card-image">
<img
alt="projectfair"
class="tooltipped"
data-position="bottom"
data-tooltip="Garments Maker LTD"
style="height: 10rem"
src="https://firebasestorage.googleapis.com/v0/b/garments-maker.appspot.com/o/android-chrome-192x192.png?alt=media&token=2bf99d63-48ac-4dc3-bac2-dfe7c479acda"
/>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ACTIVITIES SECTION ENDS -->
<!-- <div class="section">
<div id="testimonial">
<h2 class="center">Testimonial</h2>
<div class="row">
<div class="col s12 m6 l7"></div>
<div class="col s12 m6 l5">
<div class="one_card">
<div class="col s12">
<div class="rounded card-panel">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iste architecto natus dolore totam
nobis dolores possimus accusantium enim sequi repellat.
</p>
<hr />
<p class="center">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<div class="col s12">
<div class="card-panel">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iste architecto natus dolore totam
nobis dolores possimus accusantium enim sequi repellat.
</p>
</div>
</div>
<div class="col s12">
<div class="card-panel">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iste architecto natus dolore totam
nobis dolores possimus accusantium enim sequi repellat.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- TEAM SECTION STARTS -->
<div class="section">
<div id="team">
<h2 class="center">Team</h2>
<div class="row">
<div class="col s12 m4 l4">
<div class="rounded card">
<div class="card-content">
<div class="center-align">
<img
src="assets/img/team/shunjid.webp"
alt="shunjid"
class="circle responsive-img"
/>
<h6 class="name">Shunjid Rahman Showrov</h6>
<span
><a
rel="noreferrer"
href="https://www.facebook.com/shunjid"
target="_blank"
><i
class="devicon-facebook-plain colored social-icon"
></i
></a>
<a
rel="noreferrer"
href="https://github.com/shunjid"
target="_blank"
><i class="devicon-github-plain-wordmark colored"></i
></a>
<a
rel="noreferrer"
href="https://www.twitter.com/_shunjid"
target="_blank"
><i class="devicon-twitter-plain colored"></i
></a>
<a
rel="noreferrer"
href="https://linkedin.com/in/shunjid"
target="_blank"
><i class="devicon-linkedin-plain colored"></i
></a>
</span>
</div>
</div>
</div>
</div>
<div class="col s12 m4 l4">
<div class="rounded card">
<div class="card-content">
<div class="center-align">
<img
src="assets/img/team/himel.webp"
alt="himel"
class="circle responsive-img"
/>
<h6 class="name">Zubayer Himel</h6>
<span
><a
rel="noreferrer"
href="https://www.facebook.com/zubayerhimel0"
target="_blank"
><i class="devicon-facebook-plain colored"></i
></a>
<a
rel="noreferrer"
href="https://github.com/zubayerhimel"
target="_blank"
><i class="devicon-github-plain-wordmark colored"></i
></a>
<a
rel="noreferrer"
href="https://www.twitter.com/zubayerhimel0"
target="_blank"
><i class="devicon-twitter-plain colored"></i
></a>
<a
rel="noreferrer"
href="https://linkedin.com/in/zubayerhimel0"
target="_blank"
><i class="devicon-linkedin-plain colored"></i
></a>
</span>
</div>
</div>
</div>
</div>
<div class="col s12 m4 l4">
<div class="rounded card">
<div class="card-content">
<div class="center-align">
<img
src="assets/img/team/fahad.webp"
alt="fahad"
class="circle responsive-img"
/>
<h6 class="name">Shah Fahad Hossain</h6>
<span
><a
rel="noreferrer"
href="https://www.facebook.com/shahfahad.hossain"
target="_blank"
><i class="devicon-facebook-plain colored"></i
></a>
<a
rel="noreferrer"
href="https://github.com/fahad1997"
target="_blank"
><i class="devicon-github-plain-wordmark colored"></i
></a>
<a
rel="noreferrer"
href="https://www.twitter.com/fahadh1997"
target="_blank"
><i class="devicon-twitter-plain colored"></i
></a>
<a
rel="noreferrer"
href="https://linkedin.com/in/shah-fahad-hossain-b2a860160"
target="_blank"
><i class="devicon-linkedin-plain colored"></i
></a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12 m4 l4">
<div class="rounded card">
<div class="card-content">
<div class="center-align">
<img
src="assets/img/team/sheble.webp"
alt="sheble"
class="circle responsive-img"
/>
<h6 class="name">Abu Sufian Sheble</h6>
<span
><a
rel="noreferrer"
href="https://www.facebook.com/hm.sheble"
target="_blank"
><i class="devicon-facebook-plain colored"></i
></a>
<a
rel="noreferrer"
href="https://github.com/abusufianshibli"
target="_blank"
><i class="devicon-github-plain-wordmark colored"></i
></a>
<a
rel="noreferrer"
href="https://www.twitter.com/RedwanSheble"
target="_blank"
><i class="devicon-twitter-plain colored"></i
></a>
<a
rel="noreferrer"
href="https://linkedin.com/in/sheble-redwan-651b741a3"
target="_blank"