-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
991 lines (852 loc) · 52.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>EncryptoMed </title>
<link rel="stylesheet" href="https://gist.github.com/mfd/09b70eb47474836f25a21660282ce0fd#file-gilroy-ultralight-woff">
<link rel="icon" href="assets/img/LOGO Encryptomed111.png" type="image/x-icon" />
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/medicine logo.jpg" rel="icon">
<link href="assets/img/medicine logo.jpg" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Gilroy" <!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: FlexStart - v1.4.0
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="header fixed-top">
<div class="container-fluid container-xl d-flex align-items-center justify-content-between" style="font-family: gilroy;">
<!--Content ends-->
<a href="index.html" class="logo d-flex align-items-center">
<img width="75" height="100" src="assets/img/LOGO Encryptomed111.png" alt="">
<span>EncryptoMed</span>
</a>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<li><a class="nav-link scrollto" href="#team">Team</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<li><a class="getstarted" href="http://localhost:3000" target="_blank">Login </a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="hero d-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-lg-6 d-flex flex-column justify-content-center">
<h1 data-aos="fade-up"></h1>
<h2 data-aos="fade-up" data-aos-delay="400" style="margin-top: 100px; font-family: gilroy; font-size: 20px; ">Keeping up with counterfeitors in the pharmaceutical industry is no easy task, but patients’ lives depend on it. Since the beginning of time, there have been counterfeit products to divert the consumer's attention away from the original.
An originator product and a counterfeit product have a tiny philosophical distinction. In most cases, this disparity results in a poor product and consumer frustration, but counterfeits in the pharmaceutical industry can result
in serious adverse events and even death. To solve this critical issue, ENCRYPTOMED is here.</h2>
<div data-aos="fade-up" data-aos-delay="600">
<div class="text-center text-lg-start">
<a href="#about" class="btn-get-started scrollto d-inline-flex align-items-center justify-content-center align-self-center">
<span>Get started</span>
<i class="bi bi-arrow-right"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6 hero-img" data-aos="zoom-out" data-aos-delay="200">
<img style="margin-top: 200px;" width="500" height="300" src="assets/img/LOGO Encryptomed111.png" class="img-fluid" alt="">
</div>
</div>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="row gx-0">
<div class="col-lg-6 d-flex align-items-center about-img-1" data-aos="zoom-out" data-aos-delay="200">
<img src="assets/img/medicine graph.jpeg" style="margin-top: 10px;" class="img-fluid" alt="Covid YODHA" id="image-fluide" />
</div>
<div class="col-lg-6 d-flex flex-column justify-content-center" data-aos="fade-up" data-aos-delay="200">
<div class="content" style="margin-top: 90px; font-family: gilroy; font-size: 20px;">
<!-- <h3>Who We Are</h3> -->
<h2>What We Do?</h2>
<p>
Our main motive is to eradicate fabrication and ensure good health of our esteemed customers. Medicine tracking, monitoring, and most importantly anti-counterfeiting is our prime target. We bring together the manufacturers, retailers, sellers and transaction
at each stage can be monitored. Any violation in this process, is identified by our application and can be tracked by authorized government body. <br /><br />
</p>
<!-- <div class="text-center text-lg-start">
<a href="#" class="btn-read-more d-inline-flex align-items-center justify-content-center align-self-center">
<span>Read More</span>
<i class="bi bi-arrow-right"></i>
</a>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- End About1 Section -->
<!-- ======= About Section ======= -->
<section id="about1" style="background: white" class="about">
<div class="container" data-aos="fade-up" style="font-family: gilroy;">
<div class="row gx-0">
<div class="col-lg-6 d-flex flex-column justify-content-center" data-aos="fade-up" data-aos-delay="200">
<div class="content" style="font-family: gilroy;"></div>
<!-- <h3>Who We Are</h3> -->
<h2>About us</h2>
<p>
We are a team of six enthusiastic undergraduate students aiming to develop a decentralized web application for the pharmaceutical industry. We seek to apply our knowledge to provide medicinal data through secure and untampered blockchain, which is implemented
with the help of ethereum smart contract. We bring together the manufacturers, retailers, sellers and transaction at each stage can be monitored.
<br>
<i class="fas fa-arrow-right"></i> <b></b><br>
<i class="fas fa-arrow-right"></i> <b>MAJOR FEATURES:</b><br>
<i class="fas fa-arrow-right"></i> <b></b><br>
<i class="fas fa-arrow-right"></i> <b>TRANSPARENT</b><br>
<i class="fas fa-arrow-right"></i> <b>IMMUTABLE</b><br>
<i class="fas fa-arrow-right"></i> <b>SECURE</b><br>
<i class="fas fa-arrow-right"></i> <b>INVOLVES NO MIDDLEMEN</b><br>
<br><br>
<b>OUR VISION:</b><br>
<br> To Provide an effective remedy to eliminate counterfeit medicines thus eliminating the horrendous risks of the same.
<br><br>
<b>OUR MISSION:</b><br> Making the world a safer place by eliminating counterfeit medicines. <br>
</p>
<!-- <div class="text-center text-lg-start">
<a href="about.html" class="btn-read-more d-inline-flex align-items-center justify-content-center align-self-center">
<span>Read More</span>
<i class="bi bi-arrow-right"></i>
</a>
</div> -->
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Values Section ======= -->
<!-- <section id="values" class="values">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Our Values</h2>
<p>Odit est perspiciatis laborum et dicta</p>
</header>
<div class="row">
<div class="col-lg-4">
<div class="box" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/values-1.png" class="img-fluid" alt="">
<h3>Ad cupiditate sed est odio</h3>
<p>Eum ad dolor et. Autem aut fugiat debitis voluptatem consequuntur sit. Et veritatis id.</p>
</div>
</div> -->
<!-- <div class="col-lg-4 mt-4 mt-lg-0">
<div class="box" data-aos="fade-up" data-aos-delay="400">
<img src="assets/img/values-2.png" class="img-fluid" alt="">
<h3>Voluptatem voluptatum alias</h3>
<p>Repudiandae amet nihil natus in distinctio suscipit id. Doloremque ducimus ea sit non.</p>
</div>
</div>
<div class="col-lg-4 mt-4 mt-lg-0">
<div class="box" data-aos="fade-up" data-aos-delay="600">
<img src="assets/img/values-3.png" class="img-fluid" alt="">
<h3>Fugit cupiditate alias nobis.</h3>
<p>Quam rem vitae est autem molestias explicabo debitis sint. Vero aliquid quidem commodi.</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- End Values Section -->
<!-- / row -->
<!-- Feature Tabs -->
<!-- <div class="row feture-tabs" data-aos="fade-up">
<div class="col-lg-6">
<h3>Neque officiis dolore maiores et exercitationem quae est seda lidera pat claero</h3> -->
<!-- Tabs -->
<!-- <ul class="nav nav-pills mb-3">
<li>
<a class="nav-link active" data-bs-toggle="pill" href="#tab1">Saepe fuga</a>
</li>
<li>
<a class="nav-link" data-bs-toggle="pill" href="#tab2">Voluptates</a>
</li>
<li>
<a class="nav-link" data-bs-toggle="pill" href="#tab3">Corrupti</a>
</li> -->
</ul>
<!-- End Tabs -->
<!-- Tab Content -->
<!-- <div class="tab-content">
<div class="tab-pane fade show active" id="tab1">
<p>Consequuntur inventore voluptates consequatur aut vel et. Eos doloribus expedita. Sapiente atque consequatur minima nihil quae aspernatur quo suscipit voluptatem.</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Repudiandae rerum velit modi et officia quasi facilis</h4>
</div>
<p>Laborum omnis voluptates voluptas qui sit aliquam blanditiis. Sapiente minima commodi dolorum non eveniet magni quaerat nemo et.</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Incidunt non veritatis illum ea ut nisi</h4>
</div>
<p>Non quod totam minus repellendus autem sint velit. Rerum debitis facere soluta tenetur. Iure molestiae assumenda sunt qui inventore eligendi voluptates nisi at. Dolorem quo tempora. Quia et perferendis.</p> -->
<!-- </div> -->
<!-- End Tab 1 Content -->
<!-- <div class="tab-pane fade show" id="tab2">
<p>Consequuntur inventore voluptates consequatur aut vel et. Eos doloribus expedita. Sapiente atque consequatur minima nihil quae aspernatur quo suscipit voluptatem.</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Repudiandae rerum velit modi et officia quasi facilis</h4>
</div>
<p>Laborum omnis voluptates voluptas qui sit aliquam blanditiis. Sapiente minima commodi dolorum non eveniet magni quaerat nemo et.</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Incidunt non veritatis illum ea ut nisi</h4>
</div>
<p>Non quod totam minus repellendus autem sint velit. Rerum debitis facere soluta tenetur. Iure molestiae assumenda sunt qui inventore eligendi voluptates nisi at. Dolorem quo tempora. Quia et perferendis.</p> -->
<!-- </div> -->
<!-- End Tab 2 Content -->
<!-- <div class="tab-pane fade show" id="tab3">
<p>Consequuntur inventore voluptates consequatur aut vel et. Eos doloribus expedita. Sapiente atque consequatur minima nihil quae aspernatur quo suscipit voluptatem.</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Repudiandae rerum velit modi et officia quasi facilis</h4>
</div>
<p>Laborum omnis voluptates voluptas qui sit aliquam blanditiis. Sapiente minima commodi dolorum non eveniet magni quaerat nemo et.</p>
<div class="d-flex align-items-center mb-2">
<i class="bi bi-check2"></i>
<h4>Incidunt non veritatis illum ea ut nisi</h4>
</div>
<p>Non quod totam minus repellendus autem sint velit. Rerum debitis facere soluta tenetur. Iure molestiae assumenda sunt qui inventore eligendi voluptates nisi at. Dolorem quo tempora. Quia et perferendis.</p>
</div> -->
<!-- End Tab 3 Content -->
<!-- </div>
</div>
<div class="col-lg-6">
<img src="assets/img/features-2.png" class="img-fluid" alt="">
</div> -->
<!-- </div> -->
<!-- End Feature Tabs -->
<!-- Feature Icons -->
<!-- <div class="row feature-icons" data-aos="fade-up">
<h3>Ratione mollitia eos ab laudantium rerum beatae quo</h3>
<div class="row">
<div class="col-xl-4 text-center" data-aos="fade-right" data-aos-delay="100">
<img src="assets/img/features-3.png" class="img-fluid p-4" alt="">
</div>
<div class="col-xl-8 d-flex content">
<div class="row align-self-center gy-4">
<div class="col-md-6 icon-box" data-aos="fade-up">
<i class="ri-line-chart-line"></i>
<div>
<h4>Corporis voluptates sit</h4>
<p>Consequuntur sunt aut quasi enim aliquam quae harum pariatur laboris nisi ut aliquip</p>
</div>
</div> -->
<!-- <div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="100">
<i class="ri-stack-line"></i>
<div>
<h4>Ullamco laboris nisi</h4>
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt</p>
</div>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="200">
<i class="ri-brush-4-line"></i>
<div>
<h4>Labore consequatur</h4>
<p>Aut suscipit aut cum nemo deleniti aut omnis. Doloribus ut maiores omnis facere</p>
</div>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<i class="ri-magic-line"></i>
<div>
<h4>Beatae veritatis</h4>
<p>Expedita veritatis consequuntur nihil tempore laudantium vitae denat pacta</p>
</div>
</div> -->
<!-- <div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="400">
<i class="ri-command-line"></i>
<div>
<h4>Molestiae dolor</h4>
<p>Et fuga et deserunt et enim. Dolorem architecto ratione tensa raptor marte</p>
</div>
</div>
<div class="col-md-6 icon-box" data-aos="fade-up" data-aos-delay="500">
<i class="ri-radar-line"></i>
<div>
<h4>Explicabo consectetur</h4>
<p>Est autem dicta beatae suscipit. Sint veritatis et sit quasi ab aut inventore</p>
</div>
</div>
</div>
</div>
</div> -->
<!-- </div> -->
<!-- End Feature Icons -->
<!-- </div>
</section> -->
<!-- End Features Section -->
<!-- ======= Pricing Section ======= -->
<!-- <section id="pricing" class="pricing">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Pricing</h2>
<p>Check our Pricing</p>
</header>
<div class="row gy-4" data-aos="fade-left">
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="100">
<div class="box">
<h3 style="color: #07d5c0;">Free Plan</h3>
<div class="price"><sup>$</sup>0<span> / mo</span></div>
<img src="assets/img/pricing-free.png" class="img-fluid" alt="">
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li class="na">Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="200">
<div class="box">
<span class="featured">Featured</span>
<h3 style="color: #65c600;">Starter Plan</h3>
<div class="price"><sup>$</sup>19<span> / mo</span></div>
<img src="assets/img/pricing-starter.png" class="img-fluid" alt="">
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="300">
<div class="box">
<h3 style="color: #ff901c;">Business Plan</h3>
<div class="price"><sup>$</sup>29<span> / mo</span></div>
<img src="assets/img/pricing-business.png" class="img-fluid" alt="">
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
<div class="col-lg-3 col-md-6" data-aos="zoom-in" data-aos-delay="400">
<div class="box">
<h3 style="color: #ff0071;">Ultimate Plan</h3>
<div class="price"><sup>$</sup>49<span> / mo</span></div>
<img src="assets/img/pricing-ultimate.png" class="img-fluid" alt="">
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div> -->
<!-- </section> -->
<!-- End Pricing Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container" data-aos="fade-up" style="font-family: gilroy;">
<header class="section-header">
<h2>Services</h2>
<p>Services provided by us</p>
</header>
<div class="row gy-4">
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="service-box blue">
<i class="ri-discuss-line icon"></i>
<h3>Medicine Tracker </h3>
<p>The medicine tracker will assist in tracking the current status of the medicine, so as to provide a clear picture to the manufacturers, retailers, pharmacists and finally to the end users. </p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="service-box orange">
<i class="ri-discuss-line icon"></i>
<h3>Data Integration </h3>
<p>Medicinal data will be appropriately stored in order to validate the medicine and to ensure that it is safe.</p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="400">
<div class="service-box green">
<i class="ri-discuss-line icon"></i>
<h3>Anti-Medicine Counterfeiting</h3>
<p>Medicine counterfeiting is at peak in today’s date. So, providing authentic products to our customers is our utmost priority.</p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="500">
<div class="service-box red">
<i class="ri-discuss-line icon"></i>
<h3>Safe Deliveries </h3>
<p>The medicines that the user receives will be safe, original, and validated. This is done by the help of QR code generated at the time of medicine manufacturing, which is scanned by the end user to ensure paramount safety.</p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="600">
<div class="service-box purple">
<i class="ri-discuss-line icon"></i>
<h3>Supply Chain Transparency </h3>
<p>The medicine data added to the blockchain is authenticated and approved by accepted standards. It cannot be modified, though it is not completely immune to hacking, but being decentralized gives blockchain a better line of
defense. </p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="700">
<div class="service-box pink">
<i class="ri-discuss-line icon"></i>
<h3>Proper Data Management </h3>
<p>The medical field lacks appropriate management of pharmaceutical data, resulting in irregularities in medication requirements. Our project will help in integrating data from manufacturers, distributors to consumers in one place,
thus consolidating the entire system by providing proper data management. </p>
<a href="#" class="read-more"><span>Read More</span> <i class="bi bi-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq" class="faq" style="font-family: gilroy;">
<div class="container" data-aos="fade-up" style="font-family: gilroy;">
<header class="section-header" style="font-family: gilroy;">
<h2>F.A.Q</h2>
<p>Frequently Asked Questions</p>
</header>
<div class="row">
<div class="col-lg-6">
<!-- F.A.Q List 1-->
<div class="accordion accordion-flush" id="faqlist1">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq-content-1">
What are the consequences of fake drugs?
</button>
</h2>
<div id="faq-content-1" class="accordion-collapse collapse" data-bs-parent="#faqlist1">
<div class="accordion-body">
Falsified and substandard drugs may contain toxic doses of dangerous ingredients and cause mass poisoning. Poor-quality medicines compromise the treatment of chronic and infectious diseases, causing disease progression, drug resistance, and death.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq-content-2">
How can Blockchain be used in healthcare?
</button>
</h2>
<div id="faq-content-2" class="accordion-collapse collapse" data-bs-parent="#faqlist1">
<div class="accordion-body">
Blockchain could solve the problem of interoperability by allowing doctors to gather information about a patient from multiple independent systems. A blockchain is a decentralized online ledger (database), first implemented to store an ever-increasing
record of all transactions using the cryptocurrency. This could help to make health information technology (HIT) interoperable and collaborative between different users.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq-content-3">
Can Blockchain Be Used for Drug Verification?
</button>
</h2>
<div id="faq-content-3" class="accordion-collapse collapse" data-bs-parent="#faqlist1">
<div class="accordion-body">
Once written on a blockchain, content cannot be changed or deleted, it can only be appended. In today’s pharmaceutical supply chain, each transacting party typically manages its own database systems. These private databases allow each party to minimize
external security threats while maximizing internal data consistency, since a global relational database would require each party to trust all other parties in the supply chain with the integrity and security of
their data.
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<!-- F.A.Q List 2-->
<div class="accordion accordion-flush" id="faqlist2">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq2-content-1">
How do you know if/when you've purchased a counterfeit medicine?
</button>
</h2>
<div id="faq2-content-1" class="accordion-collapse collapse" data-bs-parent="#faqlist2">
<div class="accordion-body">
In some cases, patients have noticed a different taste, consistency, or appearance of medicines that are later identified as being counterfeit, or they may have a different reaction to the counterfeit drug. However, in more cases, many consumers may not
know that the medicines they've purchased are counterfeits. That's why it's important to purchase prescription medicine from a legitimate pharmacy.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq2-content-2">
Is the Blockchain secure?
</button>
</h2>
<div id="faq2-content-2" class="accordion-collapse collapse" data-bs-parent="#faqlist2">
<div class="accordion-body">
Blockchain is not immune to hacking, but being decentralized gives blockchain a better line of defense. To alter a chain, a hacker or criminal would need control of more than half of all the computers in the same distributed ledger (it's unlikely, but
possible—more on that later).
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq2-content-3">
Why to choose EncryptoMed?
</button>
</h2>
<div id="faq2-content-3" class="accordion-collapse collapse" data-bs-parent="#faqlist2">
<div class="accordion-body">
Team TeraHash is here to provide secure and authentic information to it's users at all stages by the use of EncryptoMed, our very own Dapp and to ensure a seamless experience for verifying and maintaining data regarding all pharmaceutical products.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End F.A.Q Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team" style="font-family: gilroy;">
<div class="container" data-aos="fade-up" style="font-family: gilroy;">
<header class="section-header">
<h2>Team</h2>
<p>Our hard working team</p>
</header>
<div class="row gy-3">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="100" style="font-family: gilroy;">
<div class="member">
<div class="member-img">
<img src="assets/img/team/deepshikha1.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/Deepshi30973893"><i class="bi bi-twitter"></i></a>
<a href="https://github.com/deepshikha2708"><i class="bi bi-github"></i></a>
<a href="https://www.instagram.com/das__deepshikha/"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/deepshikha-das-91b7a5209/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Deepshikha Das</h4>
<span></span>
<p>"You may do good or even better with hard work but discipline is what makes you best at it."</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="member">
<div class="member-img">
<img src="assets/img/team/pushpita.jpeg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/Pushpita_Boral?s=08"><i class="bi bi-twitter"></i></a>
<a href="https://github.com/Pushpita05"><i class="bi bi-github"></i></a>
<a href="https://www.instagram.com/pushpita05/"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/pushpita-boral-a46888213/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Pushpita Boral</h4>
<span></span>
<p>"Believe you can and you're halfway there."</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="member">
<div class="member-img">
<img src="assets/img/team/shivangi1.jpeg" class="img-fluid" alt="">
<div class="social">
<a href="http://Twitter.com/ShivangiTrikha3"><i class="bi bi-twitter"></i></a>
<a href="https://github.com/shivangi1208"><i class="bi bi-github"></i></a>
<a href="https://www.instagram.com/shivangitrikha__"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/shivangi-trikha-736663214"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Shivangi Trikha</h4>
<span></span>
<p>"You are the artist of your own life.Don’t hand the paintbrush to anyone else."</p>
</div>
</div>
</div>
<div class="row gy-3"></div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="100">
<div class="member">
<div class="member-img">
<img src="assets/img/team/2e180c41-0ecc-46ae-bed1-cf6ff186d503_2 - Meglador.jpg" class="img-fluid" alt="">
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href="https://github.com/HexHelix"><i class="bi bi-github"></i></a>
<a href="https://www.instagram.com/aklantan.bhuyan/"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/aklanta-bhuyan-547264129/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Aklanta Niraz Bhuyan</h4>
<span></span>
<p>"Curiosity is the best motivation."</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="member">
<div class="member-img">
<img src="assets/img/team/20200920_232443 - Hamid Rizvi.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/hamidrizvi4?"><i class="bi bi-twitter"></i></a>
<a href="https://github.com/hamidrizvi4"><i class="bi bi-github"></i></a>
<!-- <a href=""><i class="bi bi-instagram"></i></a> -->
<a href="https://www.linkedin.com/in/hamid-rizvi-a580681ab/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Hamid Rizvi</h4>
<span></span>
<p>"In a time of drastic change it is the learners who inherit the future. The learned usually find themselves equipped to live in a world that no longer exists."</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="member">
<div class="member-img">
<img src="assets/img/team/soham.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/Bhattac26605108"><i class="bi bi-twitter"></i></a>
<a href="https://github.com/MrWarlock2910"><i class="bi bi-github"></i></a>
<a href="https://www.instagram.com/mr__warlock/"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/sohambhattacharya2"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Soham Bhattacharya</h4>
<span></span>
<p>"In order to stay number 1 you have to always work like a number 2."</p>
</div>
</div>
</div>
</section>
<!-- End Team Section -->
<!-- ======= Clients Section ======= -->
<!-- <section id="clients" class="clients">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Our Clients</h2>
<p>Temporibus omnis officia</p>
</header>
<div class="clients-slider swiper-container">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide"><img src="assets/img/clients/client-1.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-2.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-3.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-4.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-5.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-6.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-7.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-8.png" class="img-fluid" alt=""></div>
</div>
<div class="swiper-pagination"></div>
</div>
</div> -->
<!-- </section> -->
<!-- End Clients Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<header class="section-header">
<h2>Contact</h2>
<p>Contact Us</p>
</header>
<div class="row gy-4">
<div class="col-lg-6">
<div class="row gy-4">
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-geo-alt"></i>
<h3>Address</h3>
<p>Chennai,<br>Tamil Nadu, India</p>
</div>
</div>
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-telephone"></i>
<h3>Call Us</h3>
<p>+91 99 8787 4594<br>+91 87 2653 2209</p>
</div>
</div>
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-envelope"></i>
<h3>Email Us</h3>
<p>[email protected]</p>
</div>
</div>
<div class="col-md-6">
<div class="info-box">
<i class="bi bi-clock"></i>
<h3>Open Hours</h3>
<p>Monday - Friday<br>9:00AM - 05:00PM</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<form action="forms/contact.php" method="post" class="php-email-form">
<div class="row gy-4">
<div class="col-md-6">
<input type="text" name="name" class="form-control" placeholder="Your Name" required>
</div>
<div class="col-md-6 ">
<input type="email" class="form-control" name="email" placeholder="Your Email" required>
</div>
<div class="col-md-12">
<input type="text" class="form-control" name="subject" placeholder="Subject" required>
</div>
<div class="col-md-12">
<textarea class="form-control" name="message" rows="6" placeholder="Message" required></textarea>
</div>
<div class="col-md-12 text-center">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your message has been sent. Thank you!</div>
<button type="submit">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- End Contact Section -->
</main>
<!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer" class="footer">
<div class="footer-top">
<div class="container">
<div class="row gy-4">
<div class="col-lg-5 col-md-12 footer-info" style="font-family: gilroy;">
<a href="index.html" class="logo d-flex align-items-center">
<img src="assets/img/Logo encryptomedfinal.png" alt="">
<span>EncryptoMed</span>
</a>
<p>Our prime target is to eradicate fake pharmaceutical products from reaching our highly valuable customers. We believe in inculcating an integrated system to manage data and provide complete transparency to users at all stages.
</p>
<div class="social-links mt-3">
<a href="#" class="twitter"><i class="bi bi-twitter"></i></a>
<a href="#" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="#" class="instagram"><i class="bi bi-instagram bx bxl-instagram"></i></a>
<a href="#" class="linkedin"><i class="bi bi-linkedin bx bxl-linkedin"></i></a>
</div>
</div>
<div class="col-lg-2 col-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="#">Home</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">About us</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">Services</a></li>
</ul>
</div>
<div class="col-lg-2 col-6 footer-links">
<h4>Our Services</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="#">Medicine Tracker </a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">Data Integration </a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">Medicine Counterfeiting</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">Safe Deliveries </a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">Supply Chain Transparency </a></li>
</ul>
</div>
<div class="col-lg-3 col-md-12 footer-contact text-center text-md-start">
<h4>Contact Us</h4>
<p>
Team TeraHash <br> Chennai, Tamil Nadu<br> India <br><br>
<strong>Phone:</strong> +91 9987874594<br>
<strong>Email:</strong> [email protected]<br>
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong><span>EncryptoMed</span></strong>. All Rights Reserved
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/flexstart-bootstrap-startup-template/ -->
Designed by <a href="">TeamTeraHash</a>
</div>
</div>
</footer>
<!-- End Footer -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/flexstart-bootstrap-startup-template/ -->
</div>
</div>
</footer>
<!-- End Footer -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<script src="https://account.snatchbot.me/script.js"></script>
<script>
window.sntchChat.Init(188356)
</script>
</body>
</html>