-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
697 lines (593 loc) · 41.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This is a resume site for Maria Yokochi Ordal, a designer and developer.">
<meta name="keywords" content="Maria Yokochi Ordal, Maria Ordal, portfolio, engineering, front-end, web design, coding, development">
<title>Maria Yokochi Ordal</title>
<link rel="icon" href="images/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/mariaordal.css">
</head>
<body>
<!-- HEADER -->
<div class="header-bg-sm">
<div class="page container-fluid">
<div class="section-container-nav">
<header>
<nav class="navbar navbar-expand-md">
<a class="navbar-brand" href="#" style="display: flex;">
<img class="icon-sm-nav" src="/images/icon-sm-nav.svg" alt="small red flower icon">
<span class="sm-none" style="padding: 3px 0 0 10px">Maria Yokochi Ordal</span>
</a>
<button class="navbar-toggler navbar-dark" type="button" data-toggle="collapse" data-target="#main-navigation">
<img id="nav-icon" src="/images/icon-nav-hamburger-open.svg" data-open-src="/images/icon-nav-hamburger-close.svg" alt="hamburger menu icon">
</button>
<div class="collapse navbar-collapse" id="main-navigation">
<ul class="navbar-nav">
<!--
<li class="nav-item">
<a class="nav-link suisse-caps hover" href="indexAug23.html">Version 1</a>
</li>
-->
<li class="nav-item">
<a class="nav-link suisse-caps hover" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link suisse-caps hover" href="#experience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link suisse-caps hover" href="#connect">Connect</a>
</li>
</ul>
</div>
</nav>
</header>
</div>
</div>
</div>
<div class="page container-fluid">
<!-- HERO SECTION -->
<div class="section-container">
<div class="row">
<div class="col-lg-10 col-md-10 col-sm-12">
<div class="hero-tertiary">
Nice to meet you! I’m
</div>
<div class="hero-primary">
Maria Yokochi Ordal
</div>
<div class="hero-secondary">
/横地真理亜
</div>
<p>
Double majoring in computer science and mathematics (and thesising in statistics), I'm a senior at
Wellesley College with a strong inclination towards visual design and a belief in doing things just for the joy of
learning. I embrace the art of improvement in all I do—whether it's coding, designing, or collaborating.
</p>
</div>
<div class="col-lg-2 col-md-2 col-sm-12 right-align" style="display: flex; align-items: center;">
<div class="designer-developer">
<img src="/images/designer-developer.svg" alt="a circular icon that says 'designer, developer' designed by Maria Yokochi Ordal">
</div>
</div>
<div class="col-lg-9 col-md-9 col-sm-12">
</div>
</div>
</div>
<!-- ABOUT SECTION -->
<section id="about">
<div class="section-container">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12 sm-none">
<img class="full-width" style="padding: 20px 20px 10px 0;" src="/images/img-transp.png" alt="Maria Yokochi Ordal in a red furisode kimono">
<p class="suisse-lower" style="padding-right: 20px;">Seijin-shiki (coming-of-age) photo from when I turned 20!</p>
</div>
<div class="col-1 suisse-large">
01.
</div>
<div class="col-lg-7 col-md-7 col-sm-12">
<h1>Who I am</h1>
<p>
<span class="bold">A wearer of many hats: front-end developer, graphic designer, UI/UX architect,
software engineer... </span>
My greatest joy is found when engaged in projects I'm deeply invested in (and I am very easily
invested...). I especially love helping organizations, in whose work I believe, create sites
and products that do them justice.
</p>
<h2>I just might be the biggest Figma enthusiast you’ve ever met</h2>
<p class="suisse-lower">
Not a joke—I use it whenever remotely reasonable (program for a show? yes •
instagram story for a friend's birthday? of course • spam for an org? there's no other option!)
</p>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 sm-display none">
<div style="padding: 0 4rem 10px 4rem;">
<img class="img-with-cap" src="/images/img-transp.png" alt="Maria Yokochi Ordal in a red furisode kimono">
<p class="suisse-lower">Seijin-shiki (coming-of-age) photo from when I turned 20!</p>
</div>
</div>
</div>
<p style="margin-top: 60px; color: #7A6565" class="bold">In my free time, you can find me...</p>
<div class="row" style="margin-bottom: 60px;">
<div class="col-lg-3 col-md-3 col-6">
<img class="full-width" src="/images/interests-taiko.png">
</div>
<div class="col-lg-3 col-md-3 col-6">
<img class="full-width" src="/images/interests-cooking.png">
</div>
<div class="col-lg-3 col-md-3 col-6">
<img class="full-width" src="/images/interests-crocheting.png">
</div>
<div class="col-lg-3 col-md-3 col-6">
<img class="full-width" src="/images/interests-interior.png">
</div>
</div>
</div>
</section>
</div>
<div class="parallax-container">
<div class="parallax-row">
<div class="parallax-layer layer1">
<div class="parallax-bold">Development-conscious designer</div>
<img class="parallax-icon" src="/images/icon-sm-4.svg">
<div class="parallax-suisse-lower">Design-conscious developer</div>
<img class="parallax-icon" src="/images/icon-sm-2.svg">
<div class="parallax-bold">Development-conscious designer</div>
<img class="parallax-icon" src="/images/icon-sm-3.svg">
<div class="parallax-suisse-caps">Design-conscious developer</div>
<img class="parallax-icon" src="/images/icon-sm-4.svg">
<div class="parallax-italic">Development-conscious designer</div>
<img class="parallax-icon" src="/images/icon-sm-4.svg">
<div class="parallax-suisse-lower">Design-conscious developer</div>
<img class="parallax-icon" src="/images/icon-sm-3.svg">
<div class="parallax-bold">Development-conscious designer</div>
<img class="parallax-icon" src="/images/icon-sm-4.svg">
<div class="parallax-suisse-caps">Design-conscious developer</div>
<img class="parallax-icon" src="/images/icon-sm-4.svg">
<div class="parallax-suisse-lower">Design-conscious developer</div>
</div>
<div class="parallax-layer layer2">
<div class="parallax-italic">Development-conscious designer</div>
<img class="parallax-icon" src="/images/icon-sm-1.svg">
<div class="parallax-suisse-caps">Design-conscious developer</div>
<img class="parallax-icon" src="/images/icon-sm-4.svg">
<div class="parallax-bold">Development-conscious designer</div>
<img class="parallax-icon" src="/images/icon-sm-5.svg">
<div class="parallax-suisse-lower">Design-conscious developer</div>
<img class="parallax-icon" src="/images/icon-sm-2.svg">
<div class="parallax-italic">Development-conscious designer</div>
<img class="parallax-icon" src="/images/icon-sm-4.svg">
<div class="parallax-suisse-caps">Design-conscious developer</div>
<img class="parallax-icon" src="/images/icon-sm-5.svg">
<div class="parallax-bold">Development-conscious designer</div>
</div>
</div>
</div>
<div class="full-width" style="height: 80px"></div>
<div class="page container-fluid">
<!-- EXPERIENCE SECTION -->
<section id="experience">
<div class="section-container">
<div class="row">
<div class="col-1 suisse-large">
02.
</div>
<div class="col-lg-11 col-md-11 col-sm-12">
<h1>What I've been up to</h1>
<p>
I’ve been lucky to work on <span class="bold">projects I love</span> at <span class="bold">places I
love</span> with <span class="bold">people I love</span>, and there’s so much more I could say about how these have shaped me. Don’t hesitate to
reach out if you’re curious about any of them! :)
</p>
</div>
<div class="col-1 sm-none" style="height: 10px"></div>
<!-- ACCORDION -->
<div class="col-lg-11 col-md-11 col-sm-12">
<div class="accordion" style="margin-bottom: 30px; flex-direction: column;">
<!-- BKC -->
<hr class="separator"> </hr>
<div class="session">
<!-- ALWAYS VISIBLE -->
<div class="col-12 wrapper-accordion-visible">
<div class="col-11 pad-left-none" style="width: 100%;">
<div class="visible" >
<h2 class="black">Applied Social Media Lab Intern</h2>
<div class="suisse-caps experience">@ Harvard University's Berkman Klein Center for Internet & Society</div>
</div>
</div>
<div class="col-1 pad-right-none visible" style="text-align: right; height: 30px">
<div class="arrow-container">
<img src="/images/arrow-img-down.svg">
</div>
</div>
</div>
<!-- NOT ALWAYS VISIBLE -->
<div class="content col-12">
<!-- THE ORGANIZATION -->
<div class="accordion-section">
<p class="bold">The organization</p>
<div class="full-width row">
<div class="col-lg-6 col-md-6 col-sm-6">
<img class="full-width logo" src="/images/logo-asml-bkc.png" alt="Berkman Klein Center logo">
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<p>
The Berkman Klein Center for Internet & Society at is a leading research center
dedicated to exploring the impact of the internet and digital technologies on society.
Its Applied Social Media Lab is a prototyping lab building social media solutions in the
public interest.
</p>
</div>
</div>
</div>
<div class="accordion-section">
<p class="bold">Fall 2024</p>
<p>
This fall I will continue working on transparency-related work under Zoe Roberts!
</p>
</div>
<div class="accordion-section">
<p class="bold">Summer 2024</p>
<p>
This was one of three jobs I worked during the summer of 2024! Among
other things, over summer I co-hosted an ASML forum on truth decay,
conducted a literature review on how journalism has changed over the
past 20 years, and worked on designing a transparency reporting
archive.
</p>
</div>
</div>
</div>
<!-- CCC -->
<hr class="separator"> </hr>
<div class="session">
<!-- ALWAYS VISIBLE -->
<div class="col-12 wrapper-accordion-visible">
<div class="col-11 pad-left-none" style="width: 100%;">
<div class="visible" >
<h2 class="black">Developer and Designer UROP</h2>
<div class="suisse-caps experience">@ MIT Center for Constructive Communication (MIT Media Lab)</div>
</div>
</div>
<div class="col-1 pad-right-none visible" style="text-align: right; height: 30px">
<div class="arrow-container">
<img src="/images/arrow-img-down.svg">
</div>
</div>
</div>
<!-- NOT ALWAYS VISIBLE -->
<div class="content col-12">
<!-- THE ORGANIZATION -->
<div class="accordion-section">
<p class="bold">The organization</p>
<div class="full-width row">
<div class="col-lg-4 col-md-4 col-sm-4">
<img class="full-width logo" src="/images/logo-ccc.svg" style="max-width: 300px" alt="MIT Center for Constructive Communication logo changed to match Maria Yokochi Ordal's site colors">
</div>
<div class="col-lg-8 col-md-8 col-sm-8">
<p>
The MIT Center for Constructive Communication (CCC) is a lab within MIT Media Lab
that seeks to understand modern media, innovate communication tools, and
strengthen democracy by bridging societal divides and countering fragmentation.
</p>
</div>
</div>
</div>
<!-- THE TOOLS (PILLS) -->
<!-- <div class="accordion-section">
<div class="div-tools" style="display: flex;">
<p class="bold">The tools</p>
<img class="icon-spin" style="height: 25px; margin-left: 10px;" src="/images/icon-sm-1.svg">
</div>
<div class="full-width row">
<div class="col-12 tool-container" style="display: flex; flex-wrap: wrap; padding-bottom: 15px">
<span class="tool-pill">HTML</span>
<span class="tool-pill">CSS</span>
<span class="tool-pill">Figma</span>
<span class="tool-pill">Bootstrap</span>
<span class="tool-pill">Wordpress</span>
<span class="tool-pill">VS Code</span>
<span class="tool-pill">ACF</span>
<span class="tool-pill">PHP</span>
<span class="tool-pill">JavaScript</span>
<span class="tool-pill">Understrap</span>
</div>
</div>
</div>
-->
<div class="accordion-section">
<p class="bold">Fall 2024</p>
<p>
This fall I'll be working with Belén Saldías on Odessa. Decentralized
sociotechnical systems can enable scaled cooperation across communities,
from the beautifully small to the formidably global. In order to do so
effectively, we must be able to design systems for identity, reputation,
moderation, and governance. Project Odessa builds on theoretical designs
and provides a mobile app sandbox for such experimental implementations.
</p>
</div>
<div class="accordion-section">
<p class="bold">Summer 2024</p>
<p>
This was one of three jobs I worked during the summer of 2024! Using a
mixture of CCC and DemocracyNext branding, I designed
and implemented a site to document the
first-ever tech-enhanced Student Assembly at MIT during the Independent
Activities Period (IAP) in January 2024. In this exploratory three-day
event, a dozen students gathered to deliberate on ethical guidelines
and regulations needed to govern the use of generative AI for faculty
and students at MIT.
</p>
<div class="full-width row">
<div class="col-lg-6 col-md-6 col-sm-12">
<img class="img-with-cap rounded-border" src="/images/screen-TESA.png" alt="a screenshot of the tech-enhanced student assembly site">
<p class="suisse-lower">The main splash of the homepage!</p>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<img class="img-with-cap rounded-border" src="/images/screen-TESA1.png" alt="a screenshot of the tech-enhanced student assembly site">
<p class="suisse-lower">The sticky side navigation!</p>
</div>
</div>
</div>
<div class="accordion-section">
<p class="bold">Fall 2023, Spring 2024</p>
<p>
Throughout my junior year, I continued primarily working on the main CCC site.
I implented new features like sorting and filtering, revamped projects pages,
and a tagging system.
</p>
</div>
<div class="accordion-section">
<p class="bold">Summer 2023</p>
<p>
My first semester at CCC, I successfully transitioned the CCC site from being
largely hardcoded to one built with ACF blocks, allowing for a code-free and stylistically
opinionated user experience for the site's content editors.
</p>
<div class="full-width row">
<div class="col-lg-8 col-md-8 col-sm-12">
<img class="img-with-cap rounded-border" src="/images/screen-ccc.png" alt="a gif scrolling through an Event & Opportunity page that Maria Yokochi Ordal coded">
<p class="suisse-lower">Look at this Events & Opportunites nav bar!</p>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<p>
One of my favorite parts of the new site is this Events & Opportunities nav bar!
It auto-populates so that site editors don't ever have to worry about it. I
may not be able to get you in the Gutenberg editor to modify content, but you
can visit the live site. :)
</p>
<a href="https://www.ccc.mit.edu/" target="_blank">
<button class="button-primary suisse-caps">Visit site</button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Combinatorics research -->
<hr class="separator"> </hr>
<div class="session">
<!-- ALWAYS VISIBLE -->
<div class="col-12 wrapper-accordion-visible">
<div class="col-11 pad-left-none" style="width: 100%;">
<div class="visible" >
<h2 class="black">Undergraduate Researcher (Multidimensional Combinatorics)</h2>
<div class="suisse-caps experience">@ Wellesley College's Mathematics Department</div>
</div>
</div>
<div class="col-1 pad-right-none visible" style="text-align: right; height: 30px">
<div class="arrow-container">
<img src="/images/arrow-img-down.svg">
</div>
</div>
</div>
<!-- NOT ALWAYS VISIBLE -->
<div class="content col-12">
<!-- THE ORGANIZATION -->
<div class="accordion-section">
<p class="bold">Summer 2024</p>
<p>
The third job I worked this summer was math research in
multidimensional and analogs of Catalan numbers under
Professor Stanley Chang. I explored multidimensional
Catalan numbers as generated by Young tableaux, and analogs
which can be generated from extensions of the coin-stacking
Catalan instance.
</p>
</div>
</div>
</div>
<!-- TUTORING WORK -->
<hr class="separator"> </hr>
<div class="session">
<!-- ALWAYS VISIBLE -->
<div class="col-12 wrapper-accordion-visible">
<div class="col-11 pad-left-none" style="width: 100%;">
<div class="visible" >
<h2 class="black">Data Structures Tutor, TA, & Grader</h2>
<div class="suisse-caps experience">@ Wellesley College's CS Department</div>
</div>
</div>
<div class="col-1 pad-right-none visible" style="text-align: right; height: 30px">
<div class="arrow-container">
<img src="/images/arrow-img-down.svg">
</div>
</div>
</div>
<!-- NOT ALWAYS VISIBLE -->
<div class="content">
<div class="accordion-section">
<p class="bold">Spring 2023</p>
<p>
I was both a Pforzheimer Learning & Teaching Center (PLTC) peer tutor and CS
department TA. Combined, I conducted one-on-one tutoring, hend weekly office hours, graded
problem sets, and was a teaching assistant at weekly labs.
<!-- <br><br>
Before I took data structures, I was a little nervous. It felt like my first <span class="bold italic">
real</span> computer science class, and I didn’t quite know what to expect. But, I ended up absolutely loving
it. I genuinely enjoyed the work for the class and was sad when my time in it came to an end.
<br><br>
Through becoming part of the CS 230 team, I get to engage with the course content
<span class="bold italic">and</span> experience the joy of being a part of others’ learning.
What more could I ask for? :) -->
</p>
<!-- THE TOOLS (PILLS) -->
<!-- <div class="full-width row">
<div class="col-12 tool-container" style="display: flex; flex-wrap: wrap; padding-bottom: 15px">
<span class="tool-pill">Adaptability</span>
<span class="tool-pill">Empathy</span>
<span class="tool-pill">Time Management</span>
<span class="tool-pill">Problem Solving</span>
<span class="tool-pill">Communication</span>
<span class="tool-pill">Feedback</span>
<span class="tool-pill">Facilitation</span>
<span class="tool-pill">Collaboration</span>
</div>
</div> -->
</div>
</div>
</div>
<!-- CLININTELL -->
<hr class="separator"> </hr>
<div class="session">
<!-- ALWAYS VISIBLE -->
<div class="col-12 wrapper-accordion-visible">
<div class="col-11 pad-left-none" style="width: 100%;">
<div class="visible" >
<h2 class="black">Digital Design Intern</h2>
<div class="suisse-caps experience">@ ClinIntell</div>
</div>
</div>
<div class="col-1 pad-right-none visible" style="text-align: right; height: 30px">
<div class="arrow-container">
<img src="/images/arrow-img-down.svg">
</div>
</div>
</div>
<!-- NOT ALWAYS VISIBLE -->
<div class="content">
<!-- THE ORGANIZATION -->
<div class="accordion-section">
<p class="bold">The organization</p>
<div class="full-width row">
<div class="col-lg-4 col-md-4 col-sm-4">
<img class="full-width logo" src="/images/logo-clinintell.svg" alt="ClinIntell logo changed to match Maria Yokochi Ordal's site colors">
</div>
<div class="col-lg-8 col-md-8 col-sm-8">
<p>
ClinIntell is a data analytics firm innovating in the clinical documentation improvement industry. Basically, it has to do with the analysis of hospital inpatient data!
</p>
</div>
</div>
</div>
<div class="accordion-section">
<!-- <p class="bold">Spring 2023</p> -->
<p>
I technically was a “Digital Design Intern”, whatever that really means, but ClinIntell
taught me <span class="bold italic">how</span> to work. What does it truly mean to
<span class="bold italic">show up</span> at work? In what ways can interpersonal
dynamics impact output? Through the wide variety of projects I was on, I learned
how to dive into work that required skills I needed to self-teach. Here is where I
learned how to be comfortable with discomfort. It's simply indicative of growth!
</p>
</div>
<!-- THE TOOLS (PILLS) -->
<!-- <div class="accordion-section">
<div class="full-width row">
<div class="col-12 tool-container" style="display: flex; flex-wrap: wrap; padding-bottom: 15px">
<span class="tool-pill">Adaptability</span>
<span class="tool-pill">Empathy</span>
<span class="tool-pill">Time Management</span>
<span class="tool-pill">Problem Solving</span>
<span class="tool-pill">Communication</span>
<span class="tool-pill">Feedback</span>
<span class="tool-pill">Facilitation</span>
<span class="tool-pill">Collaboration</span>
</div>
</div>
</div> -->
<div class="accordion-section">
<div class="full-width row">
<div class="col-12 flex div-tools">
<p class="bold">A peek at one of my projects</p>
<img class="icon-spin" style="height: 25px; margin-left: 10px;" src="/images/icon-sm-6.svg">
</div>
<div class="col-lg-8 col-md-8 col-sm-12">
<img class="img-with-cap rounded-border" src="/images/screen-clinintell.png" alt="a an image of a page that Maria designed">
<p class="suisse-lower">The Training App page! (under Features)</p>
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<p>
A colleague and I entirely designed the ClinIntell site over the month of
2021's winter break. This included the information architecture, brand
refresh, page layouts, and animated images.
</p>
<a href="https://www.clinintell.com/" target="_blank">
<button class="button-primary suisse-caps">Visit site</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CONNECT SECTION -->
<section id="connect">
<div class="section-container" style="padding-bottom: 200px">
<div class="row">
<div class="col-1 suisse-large">
03.
</div>
<div class="col-lg-11 col-md-11 col-sm-12">
<h1>Get in touch!</h1>
<p>
My inbox is always open! I am always open to chatting about potential projects,
things I’ve worked on, shared interests, interpersonal dynamics, or anything in
between. I love tea, so perhaps we can meet over a cup sometime
(virtually, unless you’re local to where I happen to be :).
</p>
<button id="emailButton" class="button-primary suisse-caps" style="margin-right: 20px;">Say hi!</button>
<a href="https://www.linkedin.com/in/maria-yokochi-ordal/" target="_blank">
<button class="button-primary suisse-caps">LinkedIn</button>
</a>
</div>
</div>
</div>
</section>
</div>
<!-- FOOTER -->
<footer class="footer full-width">
<div class="page container-fluid">
<div class="section-container" style="padding-bottom: 10px">
<div class="row">
<div class="col-6 footer-links">
<h2 style="color: #7A6565">Designed & coded with <3</h2>
<div class="suisse-caps" style="padding-bottom: 35px">by Maria Yokochi Ordal</div>
<a class="suisse-caps" href="https://github.com/yokochimaria" target="_blank">GitHub</a>
<span class="suisse-caps sm-none">•</span>
<a class="suisse-caps" href="https://www.linkedin.com/in/maria-yokochi-ordal/" target="_blank">LinkedIn</a>
<span class="suisse-caps sm-none">•</span>
<a class="suisse-caps" style="margin-right: 0" href="https://drive.google.com/file/d/1JeZme-7OwdNuhh46X-rcCj5cE-dXBiIx/view?usp=sharing" target="_blank">Resume</a>
<img src="/images/icon-emphasis.svg" style="margin-bottom: 15px">
</div>
<div class="col-6" style="text-align: right;">
<img src="/images/designer-developer-footer.svg" alt="a circular icon that says 'designer, developer' designed by Maria Yokochi Ordal">
</div>
<div class="col-12 suisse-caps" style="font-size: 10px; color: #887D7D">
© Maria Yokochi Ordal, 2023 | This site is licensed under the MIT License.
</div>
</div>
</div>
</div>
</footer>
<script src="js/jquery-3.7.0.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/mariaordal.js"></script>
</body>
</html>