-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (63 loc) · 2.81 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
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="src/styles.scss" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- Canonical -->
<link rel="canonical" href="https://www.example.com">
<!-- Robots -->
<meta name="robots" content="noindex, nofollow">
<!-- Device -->
<!-- <meta name="viwport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"> -->
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=5">
<meta name="format-detection" content="telephone=no">
<!-- Title -->
<title>Quick Parcel Project</title>
<!-- Description -->
<meta name="description" content="Home description.">
<!-- Social -->
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Quick Parcel Project — Home">
<meta name="twitter:description" content="Home description.">
<meta name="twitter:image" content="">
<!-- Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.example.com">
<meta property="og:title" content="Quick Parcel Project — Home">
<meta property="og:description" content="Home description.">
<meta property="og:image" content="">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<!-- Favicon -->
<meta name="theme-color" content="#fff">
</head>
<body>
<section class="q-hero">
<div class="container">
<div class="q-hero__logo">
<img src="./assets/img/logo.svg" alt="logo">
</div>
<div class="q-hero__content">
<div class="q-hero__text">
<h1>Qovery Engine <span>gitlab stars</span></h1>
<p class="q-hero__headline">Abstraction layer to deploy microservices applications on any Cloud provider.
</p>
<p class="q-hero__summary">Qovery Engine is an open-source abstraction layer product that turns easy apps
deployment on AWS, GCP, Azure and others Cloud providers. </p>
<div class="q-hero__ctas">
<a href="#" class="q-btn q-btn--dark">See on Github</a>
<a href="#" class="q-btn q-btn--primary">Join us on Discord</a>
</div>
</div>
<div class="q-hero__images">
<img src="./assets/img/hero-illus.svg" alt="illustration">
</div>
</div>
</div>
</section>
<include src="src/partials/footer.html"></include>
<script src="./src/index.js"></script>
</body>
</html>