-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1835 lines (1689 loc) · 94.4 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">
<!-- Mirrored from theme-land.com/sapp/demo/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 17 Nov 2023 19:53:39 GMT -->
<head>
<meta charset="UTF-8"/>
<meta name="description" content=""/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Title -->
<title>NeuroAscend.AI</title>
<!-- Favicon -->
<link rel="icon" href="assets/logo/logo-1.png"/>
<!-- ***** All CSS Files ***** -->
<!-- Style css -->
<link rel="stylesheet" href="assets/css/style.css"/>
<!-- Assuming slick.css is in the assets/vendor directory -->
<link rel="stylesheet" type="text/css" href="assets/vendor/slick.css">
<style>
/* Custom styles to ensure previous and next buttons are displayed inline */
.slick-prev, .slick-next {
top: 50%; /* Position at the vertical center */
transform: translateY(-50%);
font-size: 1.5em; /* Adjust font size as needed */
background-color: #fff; /* Button background color */
color: #333; /* Button text color */
border: 1px solid #ccc; /* Button border color */
padding: 5px 10px; /* Padding around the button */
border-radius: 5px; /* Button border radius */
}
.slick-prev {
left: 10px; /* Position previous button to the left */
}
.slick-next {
right: 10px; /* Position next button to the right */
}
/* ################ Story Area */
.feature-section-title-container {
display: flex;
align-items: center;
flex-direction: row;
}
.feature-section-title-container img {
max-width: 68px;
max-height: 46px;
margin-right: 10px;
}
.feature-section-title-container h2 {
margin: 0;
white-space: nowrap;
text-align: center;
}
@media (max-width: 480px) {
.feature-section-title-container {
flex-direction: column;
/* align-items: flex-start; */
}
.feature-section-title-container img {
margin-right: 0;
margin-top: 10px;
margin-bottom: 10px;
max-width: 40px;
}
.feature-section-title-container h2 {
white-space: normal;
text-overflow: initial;
}
}
/* Container styles */
.feature-area {
--rem: 16;
--theme-ui-colors-text: var(--theme-ui-colors-text, #343d48);
--theme-ui-colors-text_secondary: var(--theme-ui-colors-text_secondary, #02073e);
--theme-ui-colors-heading: var(--theme-ui-colors-heading, #0f2137);
--theme-ui-colors-heading_secondary: var(--theme-ui-colors-heading_secondary, #0f2137);
--theme-ui-colors-background: var(--theme-ui-colors-background, #ffffff);
--theme-ui-colors-background_secondary: var(--theme-ui-colors-background_secondary, #f9fbfd);
--theme-ui-colors-border_color: var(--theme-ui-colors-border_color, #e5ecf4);
--theme-ui-colors-yellow: var(--theme-ui-colors-yellow, #ffa740);
--theme-ui-colors-primary: var(--theme-ui-colors-primary, #701f9c);
--theme-ui-colors-secondary: var(--theme-ui-colors-secondary, #2563ff);
--theme-ui-colors-muted: var(--theme-ui-colors-muted, #e4e4e4);
--theme-ui-colors-accent: var(--theme-ui-colors-accent, #609);
color: var(--theme-ui-colors-text, #343d48);
font-family: "DM Sans", sans-serif;
line-height: 1.8;
font-weight: normal;
box-sizing: border-box;
margin: 0;
min-width: 0;
display: grid;
margin-left: auto;
margin-right: auto;
width: 100%;
grid-template-columns: repeat(4, 1fr);
grid-gap: 20px 20px;
}
@media (max-width: 1024px) {
.feature-area {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.feature-area {
grid-template-columns: repeat(1, 1fr);
}
}
/* Card styles */
.feature-area-card {
background-color: var(--theme-ui-colors-background_secondary);
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.feature-area-card img {
/* width: 100px;
height: 100px; */
object-fit: cover;
}
.feature-area-card .feature-area-card-title {
margin-top: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.feature-area-card .feature-area-card-title h2 {
font-size: 30px;
font-weight: bold;
margin: 0;
}
.feature-area-card .feature-area-card-title h3 {
font-size: 20px;
font-weight: bold;
margin: 0;
}
.feature-area-card .small-img {
width: 35px;
height: 35px;
object-fit: cover;
margin-top: 25px;
margin-bottom: 15px;
}
.feature-area-card p {
margin-top: 10px;
color: var(--theme-ui-colors-text_secondary);
font-size: 18px; /* Increased font-size */
font-weight: 550; /* Set font-weight to medium bold */
}
/* Sinusoidal wave effect */
.feature-area-card:nth-child(2) {
transform: translateY(120px);
}
.feature-area-card:nth-child(4) {
transform: translateY(120px);
}
@media (max-width: 1024px) {
.feature-area-card:nth-child(2) {
transform: translateY(0);
}
.feature-area-card:nth-child(4) {
transform: translateY(0);
}
}
</style>
</head>
<body>
<!--====== Scroll To Top Area Start ======-->
<div id="scrollUp" title="Scroll To Top">
<i class="fas fa-arrow-up"></i>
</div>
<!--====== Scroll To Top Area End ======-->
<div class="main">
<!-- ***** Header Start ***** -->
<header class="navbar navbar-sticky navbar-expand-lg navbar-dark">
<div class="container position-relative">
<a class="navbar-brand" href="index.html">
<img
class="navbar-brand-regular logo-standard"
src="assets/logo/logo-1.png"
alt="brand-logo"
/>
<img
class="navbar-brand-sticky logo-standard"
src="assets/logo/logo-1.png"
alt="sticky brand-logo"
/>
</a>
<button
class="navbar-toggler d-lg-none"
type="button"
data-toggle="navbarToggler"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-inner">
<!-- Mobile Menu Toggler -->
<button
class="navbar-toggler d-lg-none"
type="button"
data-toggle="navbarToggler"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<nav>
<ul class="navbar-nav" id="navbar-nav">
<li class="nav-item dropdown">
<a
class="nav-link"
href="javascript:;"
id="NavbarHome"
>
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link scroll" href="#feature">Features</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link scroll" href="#review">User Comments</a>
</li> -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="javascript:;" id="navbarDropdownMenuLink"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Blog
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li>
<a class="dropdown-item" href="blog-general.html">General Library</a>
</li>
<li>
<a class="dropdown-item" href="blog-exercise.html">Exercise Library</a>
</li>
<li>
<a class="dropdown-item" href="blog-activity.html">Activity Library</a>
</li>
<li>
<a class="dropdown-item" href="blog-diet.html">Diet Library</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link scroll" href="#subscribe">Subscribe</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- ***** Header End ***** -->
<!-- ***** Welcome Area Start ***** -->
<section id="home" class="section welcome-area overflow-hidden d-flex align-items-center fulll">
<div class="container">
<div class="row align-items-center">
<!-- Welcome Intro Start -->
<div style="padding:0 15" class="col-12 col-md-12 col-lg-12">
<div class="welcome-intro">
<h1 style="font-size: 40px; font-weight: 600" class="text-white">AI-Powered, Personalized Routines for Alzheimer's Support Mobile App</h1>
<p class="text-white my-4">
Join Our Beta Test!
Be part of the future of Alzheimer's care with NeuroAscend.AI. Our app leverages advanced AI to create personalized daily routines and health tracking, enhancing patient well-being and seamlessly connecting caregivers, doctors, and family members. Sign up now for our beta test to help us refine our features and deliver the best care experience.
Click here to sign up and share your valuable feedback!</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4">
<!-- Welcome Thumb -->
<div style="padding:0 0 0 0 ;" class="welcome-thumb mx-auto" data-aos="fade-left" data-aos-delay="500" data-aos-duration="1000">
<div >
<h3 id="subscribe" style="color: aliceblue;"><strong> SUBSCRIBE </strong></h3>
<input style="border-radius: 34px;width:100%; height:50px" class="form-control text-primary mb-3" name="name_surname" type="text" placeholder="Name Surname">
<input id="email" style="border-radius: 34px;width:100%; height:50px" class="form-control text-primary mb-3" name="email" type="email" placeholder="E-mail">
<button id="abone" style="border:1px solid white;border-radius: 34px" class="btn btn-primary" name="abone_ol" type="submit">Subscribe</button>
</div>
</div>
</div>
</div>
</div>
<!-- Shape Bottom -->
<!-- <div class="shape-bottom">
<svg viewBox="0 0 1920 310" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="svg replaced-svg">
<title>NeuroAscend.AI</title>
<desc>Created with Sketch</desc>
<defs></defs>
<g id="sApp-Landing-Page" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="sApp-v1.0" transform="translate(0.000000, -554.000000)" fill="#FFFFFF">
<path d="M-3,551 C186.257589,757.321118 319.044414,856.322454 395.360475,848.004007 C509.834566,835.526337 561.525143,796.329212 637.731734,765.961549 C713.938325,735.593886 816.980646,681.910577 1035.72208,733.065469 C1254.46351,784.220361 1511.54925,678.92359 1539.40808,662.398665 C1567.2669,645.87374 1660.9143,591.478574 1773.19378,597.641868 C1848.04677,601.75073 1901.75645,588.357675 1934.32284,557.462704 L1934.32284,863.183395 L-3,863.183395" id="sApp-v1.0"></path>
</g>
</g>
</svg>
</div> -->
</section>
<!-- ***** Welcome Area End ***** -->
<!-- ***** Counter Area Start ***** -->
<section class="section counter-area ptb_50">
<!-- Section Heading -->
<div class="section-heading text-center">
<h2>As Featured In</h2>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-5 col-sm-3 single-counter">
<div class="p-3 p-md-0">
<!-- Counter Item -->
<div class="counter-item d-inline-block mb-3">
<a
href="https://www.aa.com.tr/tr/turkiye/bakan-selcuk-tum-kadin-girisimcilerimizi-birer-turk-markasi-yapmak-icin-var-gucumuzle-calisacagiz/2031332"
>
<img
src="assets/featured-in/aa-logo.png"
alt="Anadolu Ajansı"
/>
</a>
</div>
</div>
</div>
<div class="col-5 col-sm-3 single-counter text-center">
<div class="counter-inner p-3 p-md-0">
<!-- Counter Item -->
<div class="counter-item d-inline-block mb-3">
<a
href="https://inovasyondakadin.org/dr-saliha-okur-gumrukcuoglu-kademden-kadinlara-inovasyon-gucu/"
>
<img
src="assets/featured-in/inovasyon-kadin.png"
alt="İnovasyon Kadın"
/>
</a>
</div>
</div>
</div>
<div class="col-5 col-sm-3 single-counter text-center">
<div class="counter-inner p-3 p-md-0">
<!-- Counter Item -->
<div class="counter-item d-inline-block mb-3">
<a
href="https://www.aa.com.tr/tr/bilim-teknoloji/bilisim-vadisi-genel-muduru-ibrahimcioglu-odul-alan-girisimcilerimize-ucretsiz-hizmet-verecegiz/2031348"
>
<img
src="assets/featured-in/bilisim-vadisi-logo.png"
alt="Bilişim Vadisi"
/>
</a>
</div>
</div>
</div>
<div class="col-5 col-sm-3 single-counter text-center">
<div class="counter-inner p-3 p-md-0">
<!-- Counter Item -->
<div class="counter-item d-inline-block mb-3">
<a
href="https://www.milliyet.com.tr/pazar/kademden-kadinlara-inovasyon-gucu-6354293"
>
<img
src="assets/featured-in/milliyet-logo.png"
alt="Milliyet Gazetesi"
/>
</a>
</div>
</div>
</div>
<div class="col-5 col-sm-3 single-counter text-center">
<div class="counter-inner p-3 p-md-0">
<!-- Counter Item -->
<div class="counter-item d-inline-block mb-3">
<a
href="https://www.pressreader.com/turkey/sabah/20201228/281921660661150"
>
<img
src="assets/featured-in/press-reader-logo.png"
alt="Press Reader"
/>
</a>
</div>
</div>
</div>
<div class="col-5 col-sm-3 single-counter text-center">
<div class="counter-inner p-3 p-md-0">
<!-- Counter Item -->
<div class="counter-item d-inline-block mb-3">
<a
href="https://www.haberler.com/guncel/inovasyonda-kadin-5-girisimcilik-kampi-odul-toreni-13711988-haberi/"
>
<img
src="assets/featured-in/haberler-com-logo.png"
alt="Haberler.com"
/>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Counter Area End ***** -->
<!-- ***** Review Area Start ***** -->
<section id="review" class="review-area ptb_100">
</section>
<!-- ***** Review Area End ***** -->
<section id="story" class="css-0">
<div class="story-area-container">
<!-- First kind of div -->
<div class="story-row right-aligned">
<div class="story-text">
<h3>In My Father's Of The Light: The Story Behind NeuroAscend.AI</h3>
<!-- Text content goes here -->
The enveloping of Alzheimer's disease around the sturdy family foundations and our 10-year journey
with it (still ongoing).Since childhood, I grew up in a family where education was always highly
valued, and success was consistently acknowledged. However, as I prepared for university of a
mysterious journey that lay ahead during these challenging times. At first, we couldn't make sense
of it, and we had no knowledge about this disease.
</div>
<div class="story-image">
<!-- Image goes here -->
<img src="assets/story/story-1.png">
</div>
</div>
<!-- Second kind of div -->
<div class="story-row left-aligned">
<div class="story-image">
<!-- Image goes here -->
<img src="assets/story/story-3.png">
</div>
<div class="story-text">
<!-- Text content goes here -->
The desire to pursue a career in engineering and create something meaningful has always motivated
me. Yet, when faced with this unexpected turn of events in life, I found myself embarking on an
unknown journey. My father's illness not only questioned our family's dreams and goals but also
mine. However, even amidst this trying process, my passion for research and innovation never
wavered. My university years were spent participating in various projects, yet I realized that what
truly mattered to me was being part of a project that would make a difference in people's lives.
</div>
</div>
<!-- First kind of div -->
<div class="story-row right-aligned">
<div class="story-text">
<!-- Text content goes here -->
My research on Alzheimer's disease introduced me to a world I had never seen before. Every day, I
delved into new articles, witnessed groundbreaking discoveries, and realized that I was not alone in
this journey. Equipped with this knowledge, I set myself a purpose: to fight against Alzheimer's and
help those affected by this disease.
</div>
<div class="story-image">
<img src="assets/story/story-4.png" alt="Image description">
</div>
</div>
<!-- Second kind of div -->
<div class="story-row left-aligned">
<div class="story-image">
<img src="assets/story/story-5.png" alt="Another image description">
</div>
<div class="story-text">
<!-- Text content goes here -->
With this decision, I set out on a journey, gathering all the courage to overcome the obstacles
ahead. As I took the first steps, from Istanbul to America, I embarked on a journey filled with
determination and resilience. I lived alone in Istanbul and spent days visiting hospitals,
consulting with doctors to confirm my ideas and gather insights on the feasibility and impact of my
project. During this process, my father's illness was visibly worsening day by day. He first stopped
driving due to confusion, then retired from work due to cognitive issues, and eventually became
unable to recognize us or communicate effectively.
</div>
</div>
<!-- First kind of div -->
<div class="story-row right-aligned">
<div class="story-text">
<!-- Text content goes here -->
There were times he would sit and stare out of the window for hours, sometimes not speaking at all,
and sometimes trying to wander off from home. It was the most heartbreaking thing I've witnessed in
my life. We spent years searching for him on the streets every day. Once, he walked so far and got
lost that we found him collapsed. He had to be taken to the hospital by ambulance because he
couldn't stay at home or sometimes he ran away from us due to not recognizing us. He started to
become increasingly isolated from society, stopped meeting his friends, spent hours watching TV, or
doing nothing at all. Alzheimer's was truly a terrifying disease.
</div>
<div class="story-image">
<img src="assets/story/story-7.png" alt="Image description">
</div>
</div>
<!-- Second kind of div -->
<div class="story-row left-aligned">
<div class="story-image">
<img src="assets/story/story-8.png" alt="Another image description">
</div>
<div class="story-text">
<!-- Text content goes here -->
As the pandemic hit, he completely lost his ability to speak. He could no longer form coherent
sentences or communicate. We didn't even realize how it happened. I struggled to find activities we
could do together to engage him. Eventually, through the companionship of pets and music therapy, we
managed the pandemic period a little better. I wish I had known this information earlier. We visited
many doctors, but none could offer a solution as we were dealing with an incurable disease. It was
too late for my father, but I want to help everyone else who is struggling on this difficult journey
like me.
</div>
</div>
<!-- First kind of div -->
<div class="story-row right-aligned">
<div class="story-text">
<!-- Text content goes here -->
Towards the end of the pandemic, my father had lost even the ability to perform simple daily tasks.
We had to assist him with everything from bathing to eating. He had lost all his abilities and we
could only take him out for a walk daily. Physical activity seemed to benefit him because it was the
only thing he remembered!
</div>
<div class="story-image">
<img src="assets/story/story-11.png" alt="Image description">
</div>
</div>
<!-- Second kind of div -->
<div class="story-row left-aligned">
<div class="story-image">
<img src="assets/story/story-12.png" alt="Another image description">
</div>
<div class="story-text">
<!-- Text content goes here -->
Nearly two years ago, our entire family contracted Covid severely, and my father stayed in the
intensive care unit for a month and a half. It was the darkest period for our family. Unfortunately,
my father forgot how to walk at the end of a month and a half and reached the final stage of
Alzheimer's. Currently, he has been bedridden for two years.
</div>
</div>
<!-- First kind of div -->
<div class="story-row right-aligned">
<div class="story-text">
<!-- Text content goes here -->
My father always wanted me to be a good engineer. However, I was inclined towards helping people and
doing something meaningful in life. Now, as we approach the beta testing phase, I am filled with
excitement and responsibility to bring about an innovation that will impact millions of lives. Our
artificial intelligence-powered mobile application, born out of ten years of experience in
Alzheimer's, engineering expertise, and the dedication of our doctors, not only addresses
Alzheimer's but also works on 22 different diseases. Our aim is to take a holistic approach to the
problems faced by patients and their families, improve their physical and mental health, and enhance
their quality of life by providing personalized routines, advice, and content.
</div>
<div class="story-image">
<img src="assets/story/story-14.png" alt="Image description">
</div>
</div>
<!-- Second kind of div -->
<div class="story-row left-aligned">
<div class="story-image">
<img src="assets/story/story-15.png" alt="Another image description">
</div>
<div class="story-text">
<!-- Text content goes here -->
Throughout this enduring journey, we have taken many significant steps and formed crucial
partnerships. We invite you to stay updated on new developments and be part of the progress of our
valuable project. Stay tuned and become a part of this meaningful endeavor!
</div>
</div>
<img
class="logo-standard center"
src="assets/logo/logo-1.png"
alt="brand-logo"
/>
</div>
</section>
<section id="mission" class="css-1k6cxcr">
<div class="css-1w2x6qe">
<div class="css-8u0qx2">
<div class="css-90hfgb">
<div class="css-be8jlo">Our Mission</div>
<p class="css-10z3mwn">Instead of isolating Alzheimer's patients from society,
we try to integrate them and offer them a better world. We offer this all in a single
application thanks to our content, by reducing Alzheimer’s development speed, improving the
mental
and physical health of the patient and by ensuring their safety.</p></div>
<div class="css-10b7hfy">
<img src="assets/misson-image.png"
class="css-9taffg"></div>
</div>
</div>
</section>
<div>
<!-- ***** Features Area Start ***** -->
<section
id="features"
class="section features-area style-two overflow-hidden ptb_100"
>
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8">
<!-- Section Heading -->
<div class="section-heading text-center">
<h2>What Makes NeuroAscend.AI Different?</h2>
<p class="d-sm-block mt-4">
NeuroAscend.AI takes a holistic approach to Alzheimer's disease, including personal
routines for patients as well as advise for Alzheimer's patients, their family, doctors, and
caregivers to help slow down the Alzheimer's progression and improve quality of life.
</p>
</div>
</div>
</div>
<!-- ***** Features Area End ***** -->
<section id="feature" class="css-mtbi12">
<div class="css-1w2x6qe">
<div class="css-fjr8hv">
<p class="css-1kng7n8">What We Do?</p>
<div class="feature-section-title-container">
<img src="assets/features/icon-2.png">
<h2>Meet NeuroAscend.AI</h2>
</div>
</div>
<div class="feature-area">
<div class="feature-area-card">
<img src="assets/features/exercise.png" alt="Card Image">
<div class="feature-area-card-title">
<h2>Exercise</h2>
<h3>and activity recommendations</h3>
</div>
<img class="small-img" src="assets/features/divider-icon.png" alt="Small Image">
<p>Daily exercise and activity recommendations based on
your
Alzheimer's level.</p>
</div>
<div class="feature-area-card">
<img src="assets/features/diet.png" alt="Card Image">
<div class="feature-area-card-title">
<h2>Special</h2>
<h3>Diets</h3>
</div>
<img class="small-img" src="assets/features/divider-icon.png" alt="Small Image">
<p>The medications
you should take and diets tailored to you according to your needs and
limitations.</p>
</div>
<div class="feature-area-card">
<img src="assets/features/intelligence.png" alt="Card Image">
<div class="feature-area-card-title">
<h2>Intelligence</h2>
<h3>Activities</h3>
</div>
<img class="small-img" src="assets/features/divider-icon.png" alt="Small Image">
<p>Recommended activities based on your Alzheimer's
level.</p>
</div>
<div class="feature-area-card">
<img src="assets/features/reminder.png" alt="Card Image">
<div class="feature-area-card-title">
<h2>Reminder</h2>
<h3>Time</h3>
</div>
<img class="small-img" src="assets/features/divider-icon.png" alt="Small Image">
<p> Reminders that track medication,
social activities and care you may need in your daily life.</p>
</div>
</div>
</div>
</section>
</section>
<!-- ***** Team Area Start ***** -->
<section class="section team-area team-style-two overflow-hidden ptb_100">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8">
<!-- Section Heading -->
<div class="section-heading text-center">
<h2 class="text-capitalize">Our Team</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-6 col-md-4 col-lg-3">
<!-- Single Team -->
<div class="team-member-card">
<a class="team-member-thumb" href="https://www.linkedin.com/in/feyza-sazak-7673a8181/"
target="_blank" rel="noopener noreferrer">
<img
src="assets/team/8_feyza.png"
alt="Feyza Sazak"
class=""
/>
<div class="team-info-wrapper">
<h2 class="info-name">Feyza Sazak</h2>
<p class="info-designation">CEO & Founder</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3">
<!-- Single Team -->
<div class="team-member-card">
<a class="team-member-thumb" href="https://www.linkedin.com/in/ilkayalbayrak/"
target="_blank" rel="noopener noreferrer">
<img
src="assets/team/7_ilkay_albayrak.png"
alt="İlkay Albayrak"
class=""
/>
<div class="team-info-wrapper">
<h2 class="info-name">İlkay Albayrak</h2>
<p class="info-designation">Software Developer</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3">
<!-- Single Team -->
<div class="team-member-card">
<a class="team-member-thumb" href="https://www.linkedin.com/in/rmy1/" target="_blank"
rel="noopener noreferrer">
<img
src="assets/team/5_riza_mert_yagci.png"
alt="Rıza Mert Yağcı"
class=""
/>
<div class="team-info-wrapper">
<h2 class="info-name">Rıza Mert Yağcı</h2>
<p class="info-designation">Software Developer</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3">
<!-- Single Team -->
<div class="team-member-card">
<a class="team-member-thumb" href=" https://www.linkedin.com/in/martinwhitt/"
target="_blank" rel="noopener noreferrer">
<img
src="assets/team/16_martin.png"
alt="Martin Whittaker"
class=""
/>
<div class="team-info-wrapper">
<h2 class="info-name">Martin Whittaker</h2>
<p class="info-designation">UI&UX Advisor</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3">
<!-- Single Team -->
<div class="team-member-card">
<a class="team-member-thumb" href=" https://www.linkedin.com/in/u%C4%9Furkuzu-desinger/"
target="_blank" rel="noopener noreferrer">
<img
src="assets/team/1_ugur_kuzu.png"
alt="Uğur Kuzu"
class=""
/>
<div class="team-info-wrapper">
<h2 class="info-name">Uğur Kuzu</h2>
<p class="info-designation">Design</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3">
<!-- Single Team -->
<div class="team-member-card">
<a class="team-member-thumb"
href="https://www.linkedin.com/in/laurent-pengilley/" target="_blank"
rel="noopener noreferrer">
<img
src="assets/team/19_laurent_pengilley.png"
alt="Laurent Pengilley"
class=""
/>
<div class="team-info-wrapper">
<h2 class="info-name">Laurent Pengilley</h2>
<p class="info-designation">Financial Analyst</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3">
<!-- Single Team -->
<div class="team-member-card">
<a class="team-member-thumb"
href="https://www.linkedin.com/in/zehra-erbay-930b0222b/?trk=public_profile_browsemap&original_referer=https%3A%2F%2Fwww%2Egoogle%2Ecom%2F&originalSubdomain=tr"
target="_blank" rel="noopener noreferrer">
<img
src="assets/team/14_ulfet.png"
alt="MD. Ülfet Zehra Erbay"
class=""
/>
<div class="team-info-wrapper">
<h2 class="info-name">MD. Ülfet Zehra Erbay</h2>
<p class="info-designation">Neurology</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3">
<!-- Single Team -->
<div class="team-member-card">
<a class="team-member-thumb" class="team-member-thumb"
href="https://www.linkedin.com/in/sevval-karadag-healthcare/?original_referer=https%3A%2F%2Fwww%2Egoogle%2Ecom%2F&originalSubdomain=tr"
target="_blank" rel="noopener noreferrer">
<img
src="assets/team/13_sevval.png"
alt="BMed. Şevval Karadağ"
class=""
/>
<div class="team-info-wrapper">
<h2 class="info-name">BMed. Şevval Karadağ</h2>
<p class="info-designation">Advisor</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3">
<!-- Single Team -->
<div class="team-member-card">
<a class="team-member-thumb" href="https://www.linkedin.com/in/williamscohen/"
target="_blank" rel="noopener noreferrer">
<img
src="assets/team/17_bill_cohen.png"
alt="William (Bill) Cohen"
class=""
/>
<div class="team-info-wrapper">
<h2 class="info-name">William (Bill) Cohen</h2>
<p class="info-designation">Advisor</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3">
<!-- Single Team -->
<div class="team-member-card">
<a class="team-member-thumb" href="https://www.linkedin.com/in/sigrun-rodrigues/"
target="_blank" rel="noopener noreferrer">
<img
src="assets/team/10_sigrun_nilsen.png"
alt="Sigrun Nilsen Rodrigues"
class=""
/>
<div class="team-info-wrapper">
<h2 class="info-name">Sigrun Nilsen Rodrigues</h2>
<p class="info-designation">Marketing Advisor</p>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3">
<!-- Single Team -->
<div class="team-member-card">
<a class="team-member-thumb"
href="https://www.linkedin.com/in/sezg%C3%BCl-%C5%9Fahin-079980aa/" target="_blank"
rel="noopener noreferrer">
<img
src="assets/team/12_sezgul.png"
alt="RD. Sezgül Şahin"
class=""
/>
<div class="team-info-wrapper">
<h2 class="info-name">RD. Sezgül Şahin</h2>
<p class="info-designation">Dietitian</p>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- ***** Team Area End ***** -->
<!-- ***** Blog Area Start ***** -->
<section id="blog" class="section blog-area ptb_100">
<div class="section-heading text-center">
<h2>Discover our articles about Alzheimer's disease</h2>
</div>
<!-- Your card elements go here -->
<div class="container">
<div class="slider">
<!-- First card -->
<div class="col-12 col-md-6">
<!-- Single Blog -->
<div class="single-blog res-margin">
<!-- Blog Thumb -->
<div class="blog-thumb">
<a href="#"
><img
src="assets/blog/general/general-blog-post-7.jpg"
alt="Alzhimer's info"
/></a>
</div>
<div class="css-1bot5uz">
Image by
<a
href="https://unsplash.com/@sweetlifediabetes?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash"
class="css-vurnku"