forked from themefisher/airspace-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
00_home.html
executable file
·170 lines (155 loc) · 5.1 KB
/
00_home.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
---
layout: page
title: Quantum Force
permalink: /
---
<!-- Slider Start -->
<section id="slider">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-2">
<div class="block">
<h1 class="animated fadeInUp">Bridging Quantum Computing & Humanity</h1>
<p class="animated fadeInUp">We research on full-stack Quantum Computing <br>for Industrial and Societal applications</p>
</div>
</div>
</div>
</div>
</section>
<!-- Wrapper Start -->
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-7 col-sm-12">
<div class="block">
<div class="section-title">
<h2>About Us</h2>
<p>Quantum technology startup from TU Delft</p>
</div>
<p>Highly motivated to change the World, we are constantly learning and evolving to adapt ourselves to the ever-changing landscape of full-stack Quantum Computing </p>
</div>
</div><!-- .col-md-7 close -->
<div class="col-md-5 col-sm-12">
<div class="block">
<img src="img/stack.jpg" alt="QC Stack">
</div>
</div><!-- .col-md-5 close -->
</div>
</div>
</section>
<section id="feature">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-6">
<h2>Our mission</h2>
<p>Accelerate the benefits of high-performance Quantum Computing for Industry and Society.</p>
<p>Develop a future-proof quantum framework for real word problems like health (genome), automotive (driving), security (cyber), finance (crypto) and much more.</p>
<p>Some will be shared (e.g. health), some will be protected (e.g. cyber), while cross-planet cooperation is the sole way forward.</p>
<a href="/projects/" class="btn btn-view-works">Browse our Projects</a>
</div>
</div>
</div>
</section>
<!-- Service Start -->
<section id="service">
<div class="container">
<div class="row">
<div class="section-title">
<h2>Our Services</h2>
<p>We are on the process of positioning ourselves in the quantum computing landscape</p>
</div>
</div>
<div class="row ">
<div class="col-sm-6 col-md-3">
<div class="service-item">
<i class="ion-university"></i>
<h4>Education</h4>
<p>Developing the quantum work-force for the new era of computing </p>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="service-item">
<i class="ion-settings"></i>
<h4>Industry</h4>
<p>Consultancy for quantum adoption </p>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="service-item">
<i class="ion-earth"></i>
<h4>Society</h4>
<p>Application for near-term </p>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="service-item">
<i class="ion-planet"></i>
<h4>Science</h4>
<p>Discover new knowledge frontiers </p>
</div>
</div>
</div>
</div>
</section>
<!-- Call to action Start -->
<section id="call-to-action">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h2>We try to push the boundary of human knowledge</h2>
<p>Read more about what we do and our philosophy of design. Judge for yourself the work and results we’ve achieved for other clients, and meet our highly experienced Team who just love to create a better World.</p>
<a class="btn btn-default btn-call-to-action" href="/team/" >Tell us your story</a>
</div>
</div>
</div>
</div>
</section>
<!-- Content Start -->
<section id="testimonial">
<div class="container">
<div class="row">
<div class="section-title text-center">
<h2>Fun facts</h2>
<p>Step 1: Put Q before anything you speak</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
{% if site.data.funfacts.size > 0 %}
<div class="block">
{% for ff in site.data.funfacts %}
<ul class="counter-box clearfix">
<li>
<div class="block">
<i class="{{ ff.icon }}"></i>
<h4 class="counter">{{ ff.counter }}</h4>
<span>{{ ff.text }}</span>
</div>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
</div>
<div class="col-md-6">
{% if site.data.testimonials.size > 0 %}
<div class="testimonial-carousel">
<div id="testimonial-slider" class="owl-carousel">
{% for tm in site.data.testimonials %}
<div>
<img src="img/cotation.png" alt="IMG">
<p>{{ tm.testimonial }}</p>
<div class="user">
<img src="{{ tm.image }}" alt="Pepole">
<p><span>{{ tm.name }}</span> {{ tm.title }}</p>
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %}
</div>
</div>
</div>
</section>