forked from DimaEs/bytesNpixels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
897 lines (764 loc) · 41.7 KB
/
index.html
File metadata and controls
897 lines (764 loc) · 41.7 KB
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
<!DOCTYPE html >
<html lang= "en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-167432122-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-167432122-1');
</script>
<meta charet="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Dima, Steiteyeh, portfolio, UX, UI, designer, user experience design, developer, front-end development, web design, Amman, Jordan, html, css">
<meta name="description" content="Dima Steiteyeh Portfolio | UX/UI Designer and Web Developer from Amman-Jordan, passionate about creating beautiful and functional user interfaces and experiences ">
<meta name="author" content="Dima Steiteyeh">
<meta name="googlebot" content="noodp">
<title> Dima Steiteyeh | UX/UI Designer & Web Developer Portfolio </title>
<!-- Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/dimaEs.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Fjalla+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,300i,400,500,600,700" rel="stylesheet">
<link rel="icon" type="image/png" href="high-sign-01.png">
<!-- favicon-->
<link rel="shortcut icon" type="image/x-icon" href="favi.ico" sizes="32x32">
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<i class="fa fa-bars fa-fw fa-lg" ></i>
</button>
<div class="braaand">
<a href="#page-top" class="page-scroll"><img src="D_logo.png" class="logo navbar-brand "></a>
<a class="navbar-brand page-scroll " href="#page-top">Dima Steiteyeh</a>
</div>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#about">About </a>
</li>
<li>
<a class="page-scroll" href="#skills">Skills </a>
</li>
<li>
<a class="page-scroll" href="#portfolio">Portfolio</a>
</li>
<li>
<a class="page-scroll" href="#courses">Courses</a>
<!-- <div class="label--new">new!</div> -->
</li>
<li>
<a class="page-scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="col-lg-6 ">
<div class="hello">
<h2>Hello! I'm Dima</h2>
<h1> Front-end Developer and UX|UI Designer.</h1>
</div>
</div>
</div>
</div> <!-- container -->
</header>
<!-- About Me -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-6 text-justify">
<h2 class="section-heading">About Me</h2>
<p class="large"> My name is Dima Steiteyeh, I graduated from the University of Jordan in January 2016 with a Bachelor of Science degree in Computer Information Systems. </p>
<p class="large">
In my final year of university I took a course in Human Computer Interaction where my love of User Experience Design began.
</p>
<h4>
UX Design is where I found my true passion.
</h4>
<p class="large"> After graduation I had the opportunity to complete an internship as a UX designer at Microsoft Innovation Center as part of Microsoft Academic Accelerator Program.
</p>
<p class="large"> I am currently working as a front-end developer in Amman-Jordan</p>
</div>
</div>
</div>
</section>
<!-- Skills -->
<section id="skills">
<div class="container">
<div class="row">
<div class="col-lg-6 text-justify">
<h2 class="section-heading">My Skills</h2>
<h4> Front-end Development:</h4><p class="large"> Building responsive design and SEO-friendly code using: Angular, HTML, CSS, SASS and JavaScript</p>
<h4> UX/UI Design:</h4><p class="large text"> Research, user tests, personas, prototyping, evaluation and iteration. Then designing the visual layer to create a beautiful user experience.</p>
<!-- <h4> Back-end Development:</h4><p class="large"> PHP, Ruby on Rails and SQL Databases.</p> -->
<!-- <h4> Back-end Development (still learning):</h4> <p class="large"> .Net, Ruby on Rails </p> -->
<!-- <a href="Dima Steiteyeh resume.pdf"class=" btn cv-btn" target="_blank"> My Resume </a> -->
</div>
<!--<div class="col-lg-6">
<div id="axis" class="two">
<img class="object van move-left" src="imgs/mob.png"/>
</div>
</div> -->
<!-- <div class="object-move">
<img src="imgs/mob.png"/>
</div> -->
</div>
</div>
</section>
<!-- Portfolio Grid Section -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="section-heading">Portfolio</h2>
</div>
</div>
<div class="row">
<!-- Mugdoos -->
<div class="col-md-6 col-sm-6 portfolio-item">
<a href="#portfolioModal6" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<h1> View Details</h1>
</div>
</div>
<img src="imgs/portfolio/mugdoos.png" class="img-responsive" alt="Mugdoos UX">
</a>
<div class="portfolio-caption">
<h4>Mugdoos</h4>
<p class="large text-muted">UX/UI Design</p>
</div>
</div>
<!-- High Sign-->
<div class="col-md-6 col-sm-6 portfolio-item">
<a href="#portfolioModal7" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<h1> View Details</h1>
</div>
</div>
<img src="imgs/portfolio/high-sign.png" class="img-responsive" alt="High Sign UX">
</a>
<div class="portfolio-caption">
<h4>High Sign</h4>
<p class="large text-muted">UX/UI Design</p>
</div>
</div>
<!-- Hobbyiest-->
<div class="col-md-6 col-sm-6 portfolio-item">
<a href="#portfolioModal8" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<h1> View Details</h1>
</div>
</div>
<img src="imgs/portfolio/hobbyist.png" class="img-responsive" alt="Hobbyist UX">
</a>
<div class="portfolio-caption">
<h4>Hobbyist</h4>
<p class="large text-muted">UX/UI Design</p>
</div>
</div>
<!-- my portfolio-->
<div class="col-md-6 col-sm-6 portfolio-item">
<a href="#page-top" class="portfolio-link" >
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<h1> View Details</h1>
</div>
</div>
<img src="imgs/portfolio/dima.png" class="img-responsive" alt="My Portfolio">
</a>
<div class="portfolio-caption">
<h4>My Portfolio</h4>
<p class="large text-muted">Web Design and Development</p>
</div>
</div>
<!-- Extreme-->
<!-- <div class="col-md-6 col-sm-6 portfolio-item">
<a href="#portfolioModal1" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<h1> View Details</h1>
</div>
</div>
<img src="imgs/portfolio/1-0.png" class="img-responsive" alt="Extreme Sports">
</a>
<div class="portfolio-caption">
<h4>Extreme Sports</h4>
<p class="large text-muted">Web Design and Development</p>
</div>
</div> -->
<!-- Art is not what you see-->
<!-- <div class="col-md-6 col-sm-6 portfolio-item">
<a href="#portfolioModal2" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<h1> View Details</h1>
</div>
</div>
<img src="imgs/portfolio/2-1.png" class="img-responsive" alt="Art">
</a>
<div class="portfolio-caption">
<h4>Art Is Not What You See</h4>
<p class="large text-muted">Web Design and Development </p>
</div>
</div> -->
<!-- Sign Language Poster-->
<div class="col-md-6 col-sm-6 portfolio-item">
<a href="#portfolioModal4" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<h1> View Details</h1>
</div>
</div>
<img src="imgs/portfolio/poster.jpg" class="img-responsive" alt="sign language poster UX">
</a>
<div class="portfolio-caption">
<h4>Sign Language Translator Glove</h4>
<p class="large text-muted">UX Design/Poster Design</p>
</div>
</div>
<!-- Smart Parking System-->
<div class="col-md-6 col-sm-6 portfolio-item">
<a href="#portfolioModal5" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<h1> View Details</h1>
</div>
</div>
<img src="imgs/portfolio/grad.jpg" class="img-responsive" alt="Arduino smart parking system">
</a>
<div class="portfolio-caption">
<h4>Smart Parking System - Graduation Project</h4>
<p class="large text-muted">Arduino System </p>
</div>
</div>
</div>
</div>
</section>
<!-- Courses Section -->
<section id="courses">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-left">My Courses</h2>
<div class="row">
<div class="col-lg-6">
<div class="text-center">
<a href="https://skl.sh/2KiCgGa" target="_blank">
<div class="video-container">
<img src="imgs/COVER6.jpg" />
<i class="fa fa-play-circle"></i>
</div>
</a>
</div>
</div>
<div class="col-lg-6 text-left">
<p class="large">
In this class you will learn how to improve your UX design workflow by sketching a user interface for your mobile
application.
</p>
<br />
<p class="large">
This class is great for beginners in UX who have a rough idea or specific requirements for their application.
</p>
<br />
<p class="large">No prior requirements or knowledge needed for this class, just grab a pen and paper and let’s start sketching!</p>
<br />
<h4>Sign up through my link to get the first 2 months of SkillShare premium membership for free!</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Get In Touch</h2>
<div class="row">
<div class="col-lg-6 "><h3 class="section-sub "><i class="fa fa-map-marker" aria-hidden="true"></i> I'm available in Amman-Jordan</h3></div>
<div class="col-lg-6 "><h3 class="section-sub"><i class="fa fa-envelope" aria-hidden="true"></i> dima.steiteyeh@gmail.com</h3></div>
<!-- <div class="col-lg-4 "><a href="Dima Steiteyeh resume.pdf" download><h3 class="section-sub"><i class="fa fa-download" aria-hidden="true"></i> Download My Resume</h3></a></div> -->
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="text-center">
<ul class="list-inline social-buttons">
<li><a href="https://www.linkedin.com/in/dima-steiteyeh/" target="_blank"><i class="fa fa-linkedin"></i></a>
</li>
<li> <a href="https://github.com/DimaEs" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a></li>
<li><a href="https://codepen.io/dimaes" target="_blank"><i class="fa fa-codepen"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCqHInaTYiQ-FuosEVrRIeSg" target="_blank"><i class="fa fa-youtube"></i></a> <!-- inline add icon -->
</li>
<li> <a href="https://www.instagram.com/didihatespickles/" target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer>
<div class="container">
<div class="row">
<div class="text-center">
<span class="copyright">Copyright © Dima Steiteyeh 2020</span>
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Portfolio Modal 1 Extreme -->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row ">
<div class="modal-body ">
<h2 > Web Design and Development</h2>
<ul class="list-inline">
<li class="name"><h4> Extreme Sports</h4></li>
<li class="date"><h4>May 2012</h4></li>
</ul>
</div>
</div> <!-- row-->
<div class="row text-justify bottom-border">
<div class="col-lg-6">
<p class="large"> I designed and developed this website for Web Application Development Course in university.</p>
<p class="large"> Languages used: HTML, CSS and JavaScript.</p>
</div>
<div class="col-lg-6">
<img src="imgs/portfolio/1-0.png" class="img-responsive img-centered" alt="Extreme web design development">
</div>
</div> <!-- row-->
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close </button>
</div>
</div>
</div>
<!-- Portfolio Modal 2 Art-->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row ">
<div class="modal-body ">
<h2 > Web Design and Development</h2>
<ul class="list-inline">
<li class="name"><h4> Art Is Not What You See</h4></li>
<li class="date"><h4>May 2015</h4></li>
</ul>
</div>
</div> <!-- row-->
<!-- <div class="row">
<div class="col-lg-8 text-left"> <h4> Art Is Not What You See</h4></div>
<div class="col-lg-4 text-right"> <h4> May 2015</h4></div>
</div> -->
<div class="row text-justify bottom-border">
<div class="col-lg-6">
<p class="large">I designed and developed this website while studying.</p>
<p class="large"> Languages used: HTML, CSS, ASP.Net, SQL.</p>
</div>
<div class="col-lg-6">
<img src="imgs/portfolio/2-1.png" class="img-responsive img-centered" alt="Art web design development">
</div>
</div> <!-- row-->
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close </button>
</div>
</div>
</div>
<!-- Portfolio Modal 4 -->
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row ">
<div class="modal-body ">
<h2 > UX Design/Poster Design</h2>
<ul class="list-inline">
<li class="name"><h4> Sign Language Translator Glove Prototype Poster</h4></li>
<li class="date"><h4>Jan 2016</h4></li>
</ul>
</div>
</div> <!-- row-->
<div class="row text-justify bottom-border">
<div class="col-lg-6">
<p class="large">I designed this poster for a UX project while studying and I got the first place award in a competition organized by King Abdulla || School for Information Technology (Best Project Idea and Poster Design), January 2016. </p>
<p class="large">
The idea for this project prototype is a smart glove that helps the deaf communicate better by translating sign language into a speech or text.</p>
<p class="large"> The smart glove is a wireless device that translates hand gestures into visual letters and speech. It will consist of an accelerometer; that will keep track of how the user orientates their hand as they sign, number of sensors along the fingers and a microcontroller; data then will be sent to a smart phone via Blutooth and translated into spoken /written text.</p>
</div>
<div class="col-lg-6">
<img src="imgs/portfolio/myPoster.jpg" class="img-responsive img-centered" alt="sign language translator glove poster">
</div>
</div> <!-- row-->
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close </button>
</div>
</div>
</div>
<!-- Portfolio Modal 5 -->
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row ">
<div class="modal-body ">
<h2 > Arduino System</h2>
<ul class="list-inline">
<li class="name"><h4> Smart Parking System - Graduation Project</h4></li>
<li class="date"><h4>Jan 2016</h4></li>
</ul>
</div>
</div> <!-- row-->
<div class="row text-justify bottom-border">
<div class="col-lg-6">
<p class="large">Me and my team designed and developed a prototype for a smart parking system using Arduino microcontroller, a hardware system that guides the drivers to the closest parking spot available in the parking facility. </p>
<p class="large">
The aim of this project is to create a smart, user-friendly system that can be implemented in large, multi-leveled parking garages by efficiently providing the drivers with real-time information of the closest parking lot available to regulate the traffic flow. </p>
</div>
<div class="col-lg-6">
<img src="imgs/portfolio/5-2.jpg" class="img-responsive img-centered" alt="Arduino smart parking system">
</div>
</div> <!-- row-->
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close </button>
</div>
</div>
</div>
<!-- Portfolio Modal 6 Mugdoos-->
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content ">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row ">
<div class="modal-body ">
<h2 > UX/UI Design</h2>
<ul class="list-inline">
<li class="name"><h4> Mugdoos, home-made food application / Windows 10</h4></li>
<li class="date"><h4>Sep 2016</h4></li>
</ul>
</div>
</div> <!-- row-->
<div class="row text-justify bottom-border">
<div class="col-lg-6">
<p class="large"> I was part of the team Mugdoos as a UX designer, this project was among the Top 6 participating products at the end of my internship at Microsoft Academic Accelerator Program 2016.</p>
<p class="large"> Available in Microsoft Store <a href="https://www.microsoft.com/en-us/store/p/mugdoos/9nblggh4t18q"> Get it here </a></p>
<p class="large"> People who want to sell homemade food (chefs) need to expand their market and enhance their income.
Buyers need to find and order homemade food in a fast and easy way.
</p>
<p class="large"> Watch the app demo <a href="https://www.youtube.com/watch?v=4gU4k57QYVk"> here </a></p>
</div>
<div class="col-lg-6">
<img src="imgs/portfolio/mugdoos.png" class="img-responsive img-centered" alt="mugdoos ux">
</div>
</div> <!-- row-->
<div class="row text-justify">
<h4> Storyboard</h4>
</div> <!-- row-->
<div class="row bottom-border">
<div class="col-lg-12">
<img class="img-responsive img-centered" src="imgs/portfolio/storyboard 001.jpg" alt="Mugdoos Storyboard">
</div>
</div>
<div class="row text-justify">
<h4> Personas</h4>
</div> <!-- row-->
<div class="row bottom-border">
<div class="col-lg-6">
<p class="large"> Chef</p>
<img class="img-responsive img-centered" src="imgs/portfolio/6-1.jpg" alt="chef persona">
</div>
<div class="col-lg-6">
<p class="large"> Buyer</p>
<img class="img-responsive img-centered" src="imgs/portfolio/6-2.jpg" alt="buyer persona">
</div>
</div>
<div class="row text-justify">
<h4> Wireframes</h4>
</div> <!-- row-->
<div class="row bottom-border">
<div class="col-lg-6">
<img class="img-responsive img-centered" src="imgs/portfolio/6-3.jpg" alt="wireframes">
</div>
<div class="col-lg-6">
<img class="img-responsive img-centered" src="imgs/portfolio/6-32.jpg" alt="wireframes">
</div>
</div>
<div class="row text-justify">
<h4> Visual Design</h4>
</div> <!-- row-->
<div class="row bottom-border">
<div class="col-lg-6">
<p class="large"> Buyer UI</p>
<img class="img-responsive img-centered" src="imgs/portfolio/6-4.jpg" alt="Buyer UI">
</div>
<div class="col-lg-6">
<p class="large"> Chef UI</p>
<img class="img-responsive img-centered" src="imgs/portfolio/6-5.jpg" alt="Chef UI">
</div>
</div>
<div class="row text-justify">
<h4> Branding</h4>
</div> <!-- row-->
<div class="row bottom-border">
<div class="col-lg-6">
<p class="large"> Logo Sketch</p>
<img class="img-responsive img-centered" src="imgs/portfolio/6-6.jpg" alt="logo sketch">
</div>
<div class="col-lg-6">
<p class="large"> Final Logo Design</p>
<img class="img-responsive img-centered" src="imgs/portfolio/6-7.jpg" alt="final logo">
<img class="img-responsive img-centered" src="imgs/portfolio/6-8.jpg" alt="final logo">
</div>
</div>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close </button>
</div> <!-- container-->
</div>
</div>
<!-- Portfolio Modal 7 -->
<div class="portfolio-modal modal fade" id="portfolioModal7" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row ">
<div class="modal-body ">
<h2 > UX/UI Design</h2>
<ul class="list-inline">
<li class="name"><h4> High Sign, sign-language translator application / Windows 10</h4></li>
<li class="date"><h4>Sep 2016</h4></li>
</ul>
</div>
</div> <!-- row-->
<div class="row text-justify bottom-border">
<div class="col-lg-6">
<p class="large"> I was part of the team High Sign as a UX designer, this project was among the Top 6 participating products at the end of my internship at Microsoft Academic Accelerator Program 2016.</p>
<p class="large"> Available in Microsoft Store <a href="https://www.microsoft.com/en-us/store/p/high-sign/9nblggh527nd"> Get it here</a></p>
<p class="large"> High Sign is dedicated to persons with hearing and/or speech disorders and who use sign language as their first language. It helps them to communicate with others who doesn't understand sign language.
</p>
</div>
<div class="col-lg-6">
<img src="imgs/portfolio/high-sign.png" class="img-responsive img-centered" alt="high sign ux">
</div>
</div> <!-- row-->
<div class="row text-justify">
<h4> Wireframes</h4>
</div> <!-- row-->
<div class="row bottom-border">
<div class="col-lg-6">
<img class="img-responsive img-centered" src="imgs/portfolio/7-1.jpg" alt="wireframes">
</div>
<div class="col-lg-6">
<img class="img-responsive img-centered" src="imgs/portfolio/7-11.jpg" alt="wireframes">
</div>
</div>
<div class="row text-justify">
<h4> Visual Design</h4>
</div> <!-- row-->
<div class="row bottom-border">
<div class="col-lg-3">
<img class="img-responsive img-centered" src="imgs/portfolio/hs-1.jpg" alt="high sign">
</div>
<div class="col-lg-3">
<img class="img-responsive img-centered" src="imgs/portfolio/hs-2.jpg" alt="high sign">
</div>
<div class="col-lg-3">
<img class="img-responsive img-centered" src="imgs/portfolio/hs-3.jpg" alt="high sign">
</div>
<div class="col-lg-3">
<img class="img-responsive img-centered" src="imgs/portfolio/hs-4.jpg" alt="high sign">
</div>
</div>
<div class="row text-justify">
<h4> Branding</h4>
</div> <!-- row-->
<div class="row bottom-border">
<div class="col-lg-6">
<p class="large"> Logo Sketch</p>
<img class="img-responsive img-centered" src="imgs/portfolio/7-3.jpg" alt="logo sketch">
</div>
<div class="col-lg-6">
<p class="large"> Final Logo Design</p>
<img class="img-responsive img-centered" src="imgs/portfolio/7-4.jpg" alt="final logo">
<img class="img-responsive img-centered" src="imgs/portfolio/7-5.jpg" alt="final logo">
</div>
</div>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close </button>
</div> <!-- container-->
</div>
</div>
<!-- Portfolio Modal 8 -->
<div class="portfolio-modal modal fade" id="portfolioModal8" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row ">
<div class="modal-body ">
<h2 > UX/UI Design</h2>
<ul class="list-inline">
<li class="name"><h4>Hobbyist, hobbies application / Windows 10</h4></li>
<li class="date"><h4>Sep 2016</h4></li>
</ul>
</div>
</div> <!-- row-->
<div class="row text-justify bottom-border">
<div class="col-lg-6">
<p class="large"> Hobbyist allows customers discover and find information, products and events about their hobbies and interests.
</p>
<p class="large"> The users will be able to find the places, descriptions and tools for their hobbies
and the exact dates for the events for their hobbies.
</p>
<p class="large">The companies will have the opportunity to promote for their places at the application
and give full details about the tools and the prices which will increase their profit.
</p>
</div>
<div class="col-lg-6">
<img src="imgs/portfolio/hobbyist.png" class="img-responsive img-centered" alt="hobbyist ux">
</div>
</div> <!-- row-->
<div class="row text-justify">
<h4> Wireframes</h4>
</div> <!-- row-->
<div class="row bottom-border">
<div class="col-lg-6">
<img class="img-responsive img-centered" src="imgs/portfolio/8-1.jpg" alt="wireframes">
</div>
</div>
<div class="row text-justify">
<h4> Visual Design</h4>
</div> <!-- row-->
<div class="row bottom-border">
<div class="col-lg-6">
<img class="img-responsive img-centered" src="imgs/portfolio/8-6.jpg" alt="hobbyist">
</div>
<div class="col-lg-6">
<img class="img-responsive img-centered" src="imgs/portfolio/8-7.jpg" alt="hobbyist">
</div>
</div>
<div class="row text-justify">
<h4> Branding</h4>
</div> <!-- row-->
<div class="row bottom-border">
<div class="col-lg-6">
<p class="large"> Final Logo Design</p>
<img class="img-responsive img-centered" src="imgs/portfolio/8-4.png" alt="final logo">
</div>
<div class="col-lg-6">
<img class="img-responsive img-centered" src="imgs/portfolio/8-5.png" alt="final logo">
</div>
</div>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close </button>
</div> <!-- container-->
</div>
</div>
<!-- Bytes N Pixels modal -->
<div class="portfolio-modal modal fade" id="bytes-n-pixels-modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row ">
<div class="modal-body">
<div class="col-lg-12 text-center">
<h1 class="section-heading" style="text-align: center;">DimaEs.com Has Been Moved To:</h1>
<h2 style="text-align: center;border-bottom: none;"><a
href="https://bytesnpixels.com">BYTESNPIXELS.COM</a></h2>
<p> DimaEs.com Will Be Unavailable Soon.
</p>
<p>If You Have Any Questions Feel Free To Contact Me
</p>
</div>
</div> <!-- row-->
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close
</button>
</div> <!-- container-->
</div>
</div>
</div>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<script src="js/classie.js"></script>
<script src="js/cbpAnimatedHeader.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/dima.js"></script>
<!-- <script>
$(window).on('load', function () {
$('#bytes-n-pixels-modal').modal('show');
});
</script> -->
</body>