-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
176 lines (176 loc) · 8 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/basic.css" />
<link rel="stylesheet" href="css/navbar.css" />
<link rel="stylesheet" href="css/landing.css" />
<script src="js/lib/jquery.js"></script>
</head>
<body>
<header>
<div id="nav" class="wrapper white">
<div id="page-title">
Thywis
</div>
<ul id="page-nav">
<li>
<a data-href="#landing-section">Home</a>
</li>
<li>
<a data-href="#technology-section">Technology</a>
</li>
<li>
<a data-href="#feature-section">Features</a>
</li>
<li>
<a data-href="#core-value-section">Values</a>
</li>
<li>
<a data-href="#team-section">Team</a>
</li>
</ul>
</div>
</header>
<main>
<section id="landing-section" style="background-image: url('img/landing.jpg')">
<div class="wrapper white center">
<h1 id="landing-title">Thywis <span style="font-weight: 100">Your Wisdom</span></h1>
<p>
Create consumer products with stunning AI experience, taking care of every
customer's personal needs.
</p>
<button id="explore-button" class="white">Explore</button>
</div>
</section>
<section id="technology-section">
<div class="wrapper center">
<h2 class="section-header">Technology</h2>
<div class="divider"></div>
<p id="technology-intro">
We realized that the difference between people are greater than a set of
parameters. We developed IAI(Individualize Artificial Intelligence)
technology, a combination of individualized dynamic model and domain
specific model. Each IAI agent only serves and constantly learns from its
master, being as responsive as a secretary.
</p>
<div id="iai-modules" class="row">
<div class="col-6 center">
<h3>Individualized Model</h3>
<div class="divider"></div>
<p>
A Model that is individualized to the only user. It is specified
to be with, learn from, and support for that only user, helping
solving individual problems.
</p>
</div>
<div class="col-6 center">
<h3>Dynamic Universal Model</h3>
<div class="divider"></div>
<p>
We also build model that is universal to discover the trends of the
world. It will learn from every user and solve the commonly existed
problems.
</p>
</div>
</div>
</div>
</section>
<section id="feature-section" style="background-image: url(img/feature.jpg)">
<div class="wrapper white center">
<h2 class="section-header">Products features</h2>
<div class="divider"></div>
<ul id="features-list">
<li>
<img src="img/individualized.png" />
<h3>Individualized</h3>
</li>
<li>
<img src="img/adaptive.png" />
<h3>Self-Adaptive</h3>
</li>
<li>
<img src="img/customizable.png" />
<h3>Customizable</h3>
</li>
<li>
<img src="img/secure.png" />
<h3>Secure</h3>
</li>
</ul>
<p>
We plan to build a series of IAI product that make your life easier. Our first
product is a individualized AI Inbox client that separates emails you care about
from the ones you don't, and auto tagging your emails according to your specific
needs.
</p>
</div>
</section>
<section id="core-value-section">
<div class="wrapper center">
<ul id="core-values-list">
<li>
<h3>Privacy</h3>
<div class="divider"></div>
<p>
Thywis values privacy as a law rather than a virtue. Every person from
executives to interns have the right and responsibility to make sure that
every decision made by the company takes privacy protection into account.
We strive our best to protect our customer's information from external
hazard and internal misuse.
</p>
</li>
<li>
<h2 class="section-header">Core Values</h2>
<div class="divider"></div>
</li>
<li>
<h3>Responsiveness</h3>
<div class="divider"></div>
<p>
Thywis pay attentions to our customers' needs and concerns. We'd be grateful
if you contact us with any suggestions and we love to improve our product
and service to meet your personal need.
</p>
</li>
</ul>
</div>
</section>
<section id="team-section" style="background-image: url(img/desk.jpg)">
<ul id="team-list" class="white">
<li>
<h2>Meet Our Team</h2>
<div class="divider"></div>
</li>
<li style="background-image: url(img/team/kedan.jpg)">
<a>Kedan Li</a>
</li>
<li></li>
<li style="background-image: url(img/team/jinda.jpg)">
<a>Jinda Han</a>
</li>
<li></li>
<li style="background-image: url(img/team/yifei.jpg)">
<a>Yifei Teng</a>
</li>
<li></li>
<li style="background-image: url(img/team/ziyao.jpg)">
<a>Ziyao Wang</a>
</li>
<li>
<p>
A team forced on Artificial Intelligence, user experience and
engineering!
</p>
</li>
<li style="background-image: url(img/team/liby.jpg)">
<a>Ziyang Li</a>
</li>
</ul>
</section>
<footer class="center white">
© Copyright Thywis 2017
</footer>
</main>
<script src="js/landing.js"></script>
</body>
</html>