forked from will0101/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
141 lines (123 loc) · 4.46 KB
/
products.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
{{ define "main" }}
<!-- Desktop Gen Art -->
<section class="two-boxes product-hero-section">
<!-- Mobile Gen Art -->
<div class="gen-art-mobile animated-25 animatedFadeInUp fadeInUp" id="m-p-gen-art-1"></div>
<div class="gen-art-mobile animated-5 animatedFadeInUp fadeInUp" id="m-p-gen-art-2"></div>
<div class="gen-art-mobile animated-25 animatedFadeInUp fadeInUp" id="m-p-gen-art-3"></div>
<div class="gen-art-mobile animated-25 animatedFadeInUp fadeInUp" id="m-p-gen-art-4"></div>
<div class="gen-art-mobile animated-5 animatedFadeInUp fadeInUp" id="m-p-gen-art-5"></div>
<style media="screen">
#m-p-gen-art-1{
position:absolute;
width:48vw;
height: 18.6vw;
left: 6.8vw;
margin-top:61vw;
z-index: 3;
background-image: url("/Images/gen-art/glass-triangles.jpg");
background-position: center;
background-repeat: repeat;
background-size: cover;
}
#m-p-gen-art-2{
position:absolute;
width:15vw;
height: 15vw;
left: 45vw;
margin-top:72vw;
border-radius: 200px;
z-index: 3;
background-image: url("/Images/gen-art/colorful-sandal.jpg");
background-position: center;
background-repeat: repeat;
background-size: cover;
}
#m-p-gen-art-3{
position:absolute;
width:20vw;
height: 20vw;
right: 6.8vw;
margin-top: 70vw;
z-index: 3;
background-image: url("/Images/gen-art/pixel-mouth.jpg");
background-position: center;
background-repeat: repeat;
background-size: cover;
}
#m-p-gen-art-4{
position:absolute;
width:60vw;
height: 20vw;
right: 6.8vw;
margin-top: 0vw;
z-index:2;
background-image: url("/Images/gen-art/pixel-mouth.jpg");
background-position: center;
background-repeat: repeat;
background-size: cover;
}
#m-p-gen-art-5{
position:absolute;
width:25vw;
height: 10vw;
right: 15vw;
top: 30vw;
z-index:2;
background-image: url("/Images/gen-art/tribal-green.jpg");
background-position: center;
background-repeat: repeat;
background-size: cover;
}
@media only screen and (min-width: 576px) {
.gen-art-mobile{
display: none;
}
}
</style>
<div class="container">
<div class="row">
<div class="col products-hero-col" style="position:relative; z-index:4;">
<h1 style="margin-bottom: 0px !important;">Products</h1>
<div class="lead-text-container animated-25 animatedFadeInUp fadeInUp black-bg p-4">
<p class="lead" style="margin-bottom: 0px">Just like the perfect cup of tea, greatness takes time to steep. But the wait is over… it’s time to take your first sip.</p>
<img class="mobile-grid-element" src="/Images/mobile-grid-element-3-rows.svg" alt="grid">
</div>
</div>
</div>
</div>
</section>
<hr>
<section class="products-tea-cli">
<div class="container product-container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-12 my-auto">
<h3>tea.cli</h3>
<p>Tea.cli is more than a package manager. With new features such as executable markdown, a universal interpreter, and virtual environment manager it has never been easier to create and collaborate. </p>
<button onclick="window.location.href='/tea-cli/'" class="detail-btn-large"><i class="icon-enter-arrow"></i>VIEW ALL DETAILS</button>
</div>
<div class="col my-auto">
<img src="/Images/tea_cli_mockup_no_background.png" alt="tea-cli preview" style="width:100%;">
</div>
</div>
</div>
</section>
<hr>
<!--
<section class="products-tea-package-manager">
<div class="container product-container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-12 order-lg-2 my-auto">
<h3>tea protocol</h3>
<p>The OSS funding problem has always existed, but until now, we haven't had the technology to fix it. tea is changing that by facilitating the graph of open source projects that underpin all modern digital infrastructure. We're putting this information on-chain so that we can create a map to guide value redistribution back into the open source projects that make the Internet possible.</p>
<button onclick="window.location.href='/white-paper/'" class="detail-btn-large"><i class="icon-enter-arrow"></i>READ OUR WHITE PAPER</button>
</div>
<div class="col">
<img src="/Images/tea_cli_mockup_no_background.png" alt="tea-cli preview" style="width:100%;">
</div>
</div>
</div>
</section>
-->
{{- partial "full-width-cta.html" -}}
{{ end }}