-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdialect.html
171 lines (167 loc) · 5.55 KB
/
dialect.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CWDIII - UI Design</title>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1, width=device-width">
<link rel="stylesheet" href="css/application.css" type="text/css" media="screen" />
<link href="https://fonts.googleapis.com/css?family=Rubik:400,400i,500" rel="stylesheet">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-132141-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-132141-4');
</script>
</head>
<body>
<div id="wrapper">
<header>
<div class="monogram"><a href="#top"><span class="arrow">Sees</span><span class="eye">You</span></a></div>
<div class="name">
<span>Carl W. DeCaire III</span>
<span>Design Lead + Creative Direction</span>
</div>
<div class="contact">
<span><a href="tel:1-614-352-3850">+1 614-352-3850</a></span>
<span><a href="mailto:[email protected]?subject=Hey there!">[email protected]</a></span>
</div>
<nav>
<ul>
<li><a href="./index.html" class="">Home</a></li>
<li><a href="./about.html" class="">About</a></li>
</ul>
</nav>
</header>
<main>
<section class="work">
<article>
<h1>Dialect</h1>
<figure>
<p>
Dialect is a messaging platform using web3 technology that enables users to communicate through messaging, group chats, and token-gated communities using NFTs. In addition, it provides a unique collector experience for users to collect NFT stickers, which can be used to personalize their conversations within the app.</p>
<div class="meta">
<p><strong>Role:</strong> Product Design Lead, Creative Direction</p>
<p><strong>Platforms:</strong> iOS, Android & Saga</p>
<p><strong>Year:</strong> 2023-Present</p>
</div>
</article>
<article>
<figure class="mobile">
<div class="device">
<div class="screen">
<img src="./imgs/work/dialect_01.png">
</div>
</div>
<figcaption>
Messages
</figcaption>
</figure>
<figure class="mobile">
<div class="device">
<div class="screen">
<img src="./imgs/work/dialect_02.png">
</div>
</div>
<figcaption>
Group Chat
</figcaption>
</figure>
<figure class="mobile">
<div class="device">
<div class="screen">
<img src="./imgs/work/dialect_03.png">
</div>
</div>
<figcaption>
Direct Message & Sticker Keyboard
</figcaption>
</figure>
</figure>
<figure class="mobile">
<div class="device">
<div class="screen">
<img src="./imgs/work/dialect_04.png">
</div>
</div>
<figcaption>
Sticker Collections Tab
</figcaption>
</figure>
<figure class="mobile">
<div class="device">
<div class="screen">
<img src="./imgs/work/dialect_05.png">
</div>
</div>
<figcaption>
Sticker Collection
</figcaption>
</figure>
<figure class="mobile">
<div class="device">
<div class="screen">
<img src="./imgs/work/dialect_06.png">
</div>
</div>
<figcaption>
Share Modal
</figcaption>
</figure>
</figure>
<figure class="mobile">
<div class="device">
<div class="screen">
<img src="./imgs/work/dialect_07.png">
</div>
</div>
<figcaption>
User Profile
</figcaption>
</figure>
</figure>
<figure class="mobile">
<div class="device">
<div class="screen">
<img src="./imgs/work/dialect_08.png">
</div>
</div>
<figcaption>
User Settings
</figcaption>
</figure>
</figure>
</article>
</section>
</main>
<footer>
<strong>No templates, made with simple HTML5 & CSS3</strong>
<cite>© Copyright <script type="text/javascript">document.write(new Date().getFullYear());</script> Carl DeCaire. All Rights Reserved.</cite>
</footer>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="js/waypoints-min.js"></script>
<script>
$(document).ready(function() {
$('.monogram a').click(function(){
$("html, body").animate({ scrollTop: 0 }, 400);
return false;
});
$('.work').waypoint(function(direction) {
if (direction === 'down') {
$('header').addClass('down');
$('.monogram .arrow').addClass('up')
}
else {
$('header').removeClass('down')
$('.monogram .arrow').removeClass('up')
}
});
});
</script>
</body>
</html>