-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
100 lines (85 loc) · 5.45 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Icons -->
<script src="https://kit.fontawesome.com/f457a4798c.js"></script>
<!-- Custom CSS -->
<link href="css/main.css" rel="stylesheet">
<title>Titian Steiger - Portfolio</title>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">Titian Steiger</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Projects</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="index.html">About Me
<span class="sr-only">(current)</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page Content -->
<div class="container">
<div class="row">
<!-- Personal Details Column -->
<div class="col-md-8">
<!-- Personal Details Card -->
<div class="card mb-4">
<div class="card-body">
<p class="card-text">
I am a Co-founder and current Head of Product at Molecule Protocol. We focus on building a Web 3.0 marketplace for intellectual property rights with the vision of ultimately creating new, viable business models for drug discovery & development. I define the product strategy, lead the Scrum management for our development team and guide research around novel cryptoeconomic incentive schemes. I started working full-time for this project in February 2019 after raising pre-seed funding from an Angel investor.<br><br>
After finishing my Master’s degree in Chemical & Bioeginnering, I spent my first two years in Securities Trading at a large bank and Consulting for the pharmaceutical industry.<br><br>
Missing purpose and impact, I began my fintech journey in the Business Operations department of a Swiss start-up providing short-term financing solutions for SMEs. After initially focusing on process optimization and automation, I was given the opportunity to establish a new Business Analytics position to complement the technical team. This was my stepping stone into product management and I have never looked back since.<br><br>
I enjoy learning about new technologies and figuring out how to leverage their unique capabilities to change the way business works. Bridging the gap between technical and business talks is a strength of mine and I like to use my own technical skills to crunch data for quantitative decision making or hack together scripts to test new services.<br><br>
My personal website provides a playground to address challenges encountered during work or experiment with interesting data sets and visualization tools.
</p>
</div>
</div>
</div>
<!-- Sidebar Widgets Column -->
<div class="col-md-4">
<!-- Portraid Card -->
<div class="card my-4 portrait-card">
<img class="card-img-top portrait rounded-circle" src="img/portrait.png">
<div class="card-body">
<h5 class="card-title">Titian Steiger</h5>
<h6 class="card-subtitle mb-2 text-muted">Product Strategy, Fintech & Token Economics, Data Science.</h6>
<p class="card-text">
<i class="fas fa-map-marker-alt"></i> Zürich, Switzerland <br>
<i class="fas fa-envelope"></i> <a href="mailto:titian.steiger@gmail.com">Email</a> <br>
<i class="fab fa-linkedin"></i> <a href="https://www.linkedin.com/in/titian-steiger/">LinkedIn</a> <br>
<i class="fab fa-github"></i> <a href="https://github.com/ttsteiger">GitHub</a>
</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container">
<p class="m-0 text-center text-white">Copyright © Titian 2019</p>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>