-
Notifications
You must be signed in to change notification settings - Fork 3
/
pricing.html
138 lines (118 loc) · 5.97 KB
/
pricing.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
<!doctype html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-161822888-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-161822888-1');
</script>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<style>
.jumbotron {
background-image: url("images/immersivepoints_jumbotron.png");
background-size: cover;
#min-height: 550px;
}
.jumbotron h1 {
color: #fff;
}
.jumbotron p {
color: #fff;
}
body {
padding-bottom: 2rem;
}
</style>
<title>Immersive Pointcloud</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">
<img src="images/immersive_points_logo/logo_cutout.png" height="40" class="d-inline-block align-top" alt="">
</a>
<div class="navbar-nav">
<a class="nav-item nav-link " href="/index.html">Home</a>
<a class="nav-item nav-link" href="/upload.html">Upload</a>
<a class="nav-item nav-link active" href="/pricing.html">Pricing <span class="sr-only">(current)</span></a>
</div>
</nav>
</header>
<div class="jumbotron">
<div class="container">
<h1 class="display-3">ImmersivePoints</h1>
<p>Explore your data by walking through it!</p>
<p><a class="btn btn-primary btn-lg" href="https://rmeertens.github.io/ImmersivePoints/upload.html" role="button">📤Upload your own</a></p>
</div>
</div>
<main role="main" class="container">
<div id="main_content_wrap" class="container-fluid">
<section id="main_content" class="container-fluid">
<h1>Pricing</h1>
<h3><strike>$150/month</strike> Free! </h3>
<div class="col-md-*">
Thanks a lot for looking at the pricing page 😄 While this is a small side project I decided to make it free to upload your point clouds. <br>
In return it would be really nice if you could mention my site if you show your point clouds to others!<br>
If you would like to integrate this site into your service, upload a lot of point clouds, have a specific use case, or a feature request: please do get in contact with me by sending an email at [email protected].
</div>
<!--
<div class="card-deck mb-3 text-center">
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal"> 👩🎨 Community</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">$0 <small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Display points</li>
<li>Max file size of 3MB upload</li>
<li>Upload point clouds</li>
<li>Occulus quest supported</li>
</ul>
<a href="/upload.html" type="button" class="btn btn-lg btn-block btn-primary">Upload for free</a>
</div>
</div>
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal"> 👨🏻💼 Pro</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">$150 <small class="text-muted">/ mo</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Display points, vertices, and bounding boxes</li>
<li>Upload up to 20GB of assets</li>
<li>Access to support</li>
</ul>
<a href="mailto:[email protected]" type="button" class="btn btn-lg btn-block btn-primary">Contact us</a>
</div>
</div>
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal"> 👩🚀 Custom</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"> <small class="text-muted">Contact us</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Storage per request</li>
<li>Custom objects are visualised</li>
<li>Custom VR set support</li>
<li>Access to support</li>
</ul>
<a href="mailto:[email protected]" type="button" class="btn btn-lg btn-block btn-primary">Contact us</a>
</div>
</div>
</div>-->
</section>
</div>
</main>
</body>
</html>