www/src/layouts/page/products.html

145 lines
4.7 KiB
HTML
Raw Normal View History

2022-10-04 00:08:34 +03:00
{{ define "main" }}
<!-- Desktop Gen Art -->
2022-10-25 02:58:28 +03:00
<section class="two-boxes hero-section">
<div class="gen-art animated-25 animatedFadeInUp fadeInUp" id="pro-gen-art-1"></div>
<div class="gen-art animated-25 animatedFadeInUp fadeInUp" id="pro-gen-art-2"></div>
<div class="gen-art animated-5 animatedFadeInUp fadeInUp" id="pro-gen-art-3"></div>
2022-10-26 01:34:30 +03:00
<div class="gen-art animated-5 animatedFadeInUp fadeInUp" id="pro-gen-art-4"></div>
<div class="gen-art animated-25 animatedFadeInUp fadeInUp" id="pro-gen-art-5"></div>
<!-- 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;
2022-10-27 15:31:53 +03:00
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;
2022-10-27 15:31:53 +03:00
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>
2022-10-25 01:12:08 +03:00
<div class="container">
<div class="row">
<div class="col" style="position:relative; z-index:4;">
2022-10-25 01:12:08 +03:00
<h1>Products</h1>
<p class="lead animated-5 animatedFadeInUp fadeInUp">Just like the perfect cup of tea, greatness takes time to steep. But the wait is over… its 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>
</section>
<hr>
<section class="products-tea-cli">
2022-10-13 00:00:49 +03:00
<div class="container product-container">
<div class="row">
2022-10-07 21:52:09 +03:00
<div class="col-lg-6 col-md-6 col-sm-12 col-12 my-auto">
2022-10-19 20:50:00 +03:00
<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>
2022-10-07 20:31:47 +03:00
<button onclick="window.location.href='/tea-cli/'" class="detail-btn-large"><i class="icon-enter-arrow"></i>VIEW ALL DETAILS</button>
</div>
2022-10-07 21:52:09 +03:00
<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">
2022-10-13 00:00:49 +03:00
<div class="container product-container">
<div class="row">
2022-10-07 22:05:18 +03:00
<div class="col-lg-6 col-md-6 col-sm-12 col-12 order-lg-2 my-auto">
2022-10-13 00:33:58 +03:00
<h3>tea protocol</h3>
2022-10-19 20:50:00 +03:00
<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">
2022-10-07 22:05:18 +03:00
<img src="/Images/tea_cli_mockup_no_background.png" alt="tea-cli preview" style="width:100%;">
</div>
</div>
</div>
</section>
2022-10-13 00:18:46 +03:00
{{- partial "full-width-cta.html" -}}
2022-10-04 00:08:34 +03:00
{{ end }}