www/src/layouts/index.html

1208 lines
37 KiB
HTML
Raw Normal View History

{{ define "main" }}
2022-09-08 22:46:27 +03:00
<!-- Hero Section -->
2023-02-01 20:01:06 +03:00
<style>
.hero{
background-image: url("/Images/hero-background-mountains.png") !important;
background-attachment: scroll;
background-position: right;
background-repeat: repeat-y;
background-size: cover !important;
}
.stats-top{
background-image: url("/Images/gen-art/orange-pattern.jpg") !important;
background-attachment: fixed;
background-position: center;
background-repeat: repeat;
background-size: contain;
}
code{
color:white;
font-size: 14px;
}
2023-02-02 00:57:42 +03:00
.inner-glow{
color: #1a1a1a;
text-shadow: 0 0px 18px rgba(255, 255, 255, 0.5);
}
.code-box{
border: 1px solid #ff4100;
position: relative;
padding: 2px;
border-radius: 2px;
color: #ff4100;
}
#copy-button{
height: 40px;
width: 120px;
font-family: "inter", sans-serif !important;
text-transform: uppercase;
}
2023-02-01 20:01:06 +03:00
</style>
<section class="hero">
2023-01-21 02:05:17 +03:00
<div class="container">
2023-02-01 01:07:03 +03:00
<div class="row gx-5">
2023-02-01 20:01:06 +03:00
<div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12">
2023-02-02 00:57:42 +03:00
<h1 class="display-1" style="z-index:3; position: relative;"><span class="inner-glow">Invisible</span> yet <span class="callout white">powerful</span></h1>
2023-02-01 01:07:03 +03:00
<p class="lead">Upgrade to Tea - the revolutionary, cross-platform package manager. Say goodbye to slow & clunky, and say hello to fast & smooth updates. From the creator of Brew.</p>
2023-02-02 00:57:42 +03:00
<p class="mb-5">Introducing tea, the cross-platform package manager of the future. Say goodbye to slow package managers. With tea, simply type commands and it takes care of the rest. Get the latest version easily and support specific tool versions for different projects. Encoding dependencies in the README makes it readable by humans and tea, providing easier access for users. Experience better package management with tea.</p>
2023-02-01 01:07:03 +03:00
<div class="flex-start mb-3">
2023-02-01 20:01:06 +03:00
<a href="https://github.com/teaxyz/cli" class="me-3">
<button class="hbtn hb-fill-right"><i class="icon-tea-logo-iconasset-1"></i>INSTALL TEA (<span class="release" style="text-transform: lowercase;"></span>)</button>
2023-02-01 01:07:03 +03:00
</a>
<a href="https://github.com/teaxyz/cli">
2023-02-01 20:01:06 +03:00
<button class="hbtn-light hb-light-fill-right"><i class="icon-github" style="position:relative;top:2px;"></i>GITHUB (&#9734;<span class="stargazers" style="text-transform: lowercase;"></span>)</button>
2023-02-01 01:07:03 +03:00
</a>
</div>
2023-02-01 20:01:06 +03:00
<p class="small dark-gray mb-5">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
2023-02-01 01:07:03 +03:00
</div>
2023-02-01 20:01:06 +03:00
<div class="col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12">
<div class="terminal flex">
2023-01-24 17:10:46 +03:00
<div class="terminal-bar black-bg flex-start p-1 ps-3">
2023-01-23 22:29:47 +03:00
<div class="traffic-light"></div>
<div class="traffic-light"></div>
<div class="traffic-light"></div>
2023-02-02 00:57:42 +03:00
</div>
<div class="flex p-2" style="border-bottom: 1px solid gray;">
<div class="flex pt-2 pb-2 ps-4 pe-2" style="width: 100%; border: 1px solid #949494; border-radius: 5px;">
<code id="copy-text" class="white">sh <(curl tea.xyz) --yes</code>
<button class="hbtn hb-fill-right" id="copy-button">Copy</button>
</div>
2023-01-23 22:29:47 +03:00
</div>
<div class="p-5">
2023-01-26 19:57:22 +03:00
<div class="terminal-content">
2023-02-01 20:01:06 +03:00
<code id="terminal-output"></code>
2023-01-26 01:26:34 +03:00
<p id="terminal-input"></p>
</div>
</div>
</div>
2023-01-21 02:05:17 +03:00
</div>
</div>
</div>
2023-01-21 02:05:17 +03:00
</section>
2023-02-02 00:57:42 +03:00
<script>
$("#copy-button").on("click", function() {
var copyText = "sh <(curl https://tea.xyz)";
var tempInput = document.createElement("input");
tempInput.style = "position: absolute; left: -1000px; top: -1000px";
tempInput.value = copyText;
document.body.appendChild(tempInput);
tempInput.select();
document.execCommand("copy");
document.body.removeChild(tempInput);
// Change the button text to 'Copied'
var button = $("#copy-button");
var originalText = button.text();
button.text("Copied!");
// Change the button text back to original after 5 seconds
setTimeout(function() {
button.text(originalText);
}, 2000);
});
</script>
2023-01-26 23:49:04 +03:00
{{- partial "hero-terminal-animation.html" -}}
2023-01-21 02:05:17 +03:00
<style>
2023-01-26 19:57:22 +03:00
@media only screen and (min-width: 1200px) {
2023-01-26 01:26:34 +03:00
2023-01-26 19:57:22 +03:00
.term-icon{
position: relative;
top: 3px;
}
2023-01-26 01:26:34 +03:00
2023-01-26 19:57:22 +03:00
.term-btn{
text-transform: uppercase;
}
2023-01-26 01:26:34 +03:00
2023-01-26 19:57:22 +03:00
#tryIt{
position: fixed;
right: 20px;
bottom: 20px;
background-color: #8000ff;
border: none;
color: white;
font-familY: "pp-neue-machina";
padding: 5px 20px;
}
2023-01-23 22:29:47 +03:00
2023-01-26 19:57:22 +03:00
.traffic-light{
height: 16px;
width: 16px;
border: 1px solid gray;
border-radius: 100px;
display: inline-block;
margin-right: 5px;
}
.terminal{
2023-02-01 20:01:06 +03:00
height: auto;
min-height: 40%;
2023-02-01 01:07:03 +03:00
width: 100%;
2023-01-26 19:57:22 +03:00
display: block;
margin-left: auto;
margin-right: auto;
margin-top:-0.3vw;
margin-bottom: -8.371vw;
border-radius: 10px;
background-color: #1a1a1a;
border: 1px solid gray;
box-shadow: 0px 10px 18px rgba(10, 05, 05, .5);
animation: float 3s ease-in-out infinite;
}
.terminal-bar{
height: 30px;
border-radius: 8px 8px 0px 0px;
border-bottom: 1px solid gray;
}
#terminal-input:after {
content: "|";
color: green;
position: absolute;
left: 0;
animation: blink 1s linear infinite;
}
@keyframes blink {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
#terminal-output {
white-space: pre;
display: inline-block;
}
#terminal-input {
position: relative;
display: inline-block;
}
.terminal-content{
overflow: hidden;
}
2023-01-21 02:05:17 +03:00
}
2023-01-26 19:57:22 +03:00
@media only screen and (min-width: 992px) and (max-width: 1200px) {
.term-icon{
position: relative;
top: 3px;
}
.term-btn{
text-transform: uppercase;
}
#tryIt{
position: fixed;
right: 20px;
bottom: 20px;
background-color: #8000ff;
border: none;
color: white;
font-familY: "pp-neue-machina";
padding: 5px 20px;
}
.traffic-light{
height: 16px;
width: 16px;
border: 1px solid gray;
border-radius: 100px;
display: inline-block;
margin-right: 5px;
}
.terminal{
height: auto;
min-height: 449px;
width: 58.594vw;
display: block;
margin-left: auto;
margin-right: auto;
margin-top:-0.3vw;
margin-bottom: -8.371vw;
border-radius: 10px;
background-color: #1a1a1a;
border: 1px solid gray;
box-shadow: 0px 10px 18px rgba(10, 05, 05, .5);
animation: float 3s ease-in-out infinite;
}
.terminal-bar{
height: 30px;
border-radius: 8px 8px 0px 0px;
border-bottom: 1px solid gray;
}
#terminal-input:after {
content: "|";
color: green;
position: absolute;
left: 0;
animation: blink 1s linear infinite;
}
@keyframes blink {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
#terminal-output {
white-space: pre;
display: inline-block;
}
#terminal-input {
position: relative;
display: inline-block;
}
.terminal-content{
overflow: hidden;
}
2023-01-25 23:32:35 +03:00
}
2023-01-26 19:57:22 +03:00
@media only screen and (min-width: 768px) and (max-width: 992px) {
.term-icon{
position: relative;
top: 3px;
2023-01-25 23:32:35 +03:00
}
2023-01-26 19:57:22 +03:00
.term-btn{
text-transform: uppercase;
2023-01-25 23:32:35 +03:00
}
2023-01-26 19:57:22 +03:00
#tryIt{
position: fixed;
right: 20px;
bottom: 20px;
background-color: #8000ff;
border: none;
color: white;
font-familY: "pp-neue-machina";
padding: 5px 20px;
2023-01-25 23:32:35 +03:00
}
2023-01-26 19:57:22 +03:00
.traffic-light{
height: 16px;
width: 16px;
border: 1px solid gray;
border-radius: 100px;
display: inline-block;
margin-right: 5px;
}
.terminal{
height: auto;
min-height: 449px;
width: 100%;
display: block;
margin-left: auto;
margin-right: auto;
margin-top:-0.3vw;
margin-bottom: -8.371vw;
border-radius: 10px;
background-color: #1a1a1a;
border: 1px solid gray;
box-shadow: 0px 10px 18px rgba(10, 05, 05, .5);
animation: float 3s ease-in-out infinite;
}
.terminal-bar{
height: 30px;
border-radius: 8px 8px 0px 0px;
border-bottom: 1px solid gray;
}
#terminal-input:after {
content: "|";
color: green;
position: absolute;
left: 0;
animation: blink 1s linear infinite;
}
@keyframes blink {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
#terminal-output {
white-space: pre;
display: inline-block;
}
#terminal-input {
position: relative;
display: inline-block;
}
.terminal-content{
overflow: hidden;
}
2023-01-25 23:32:35 +03:00
}
2023-01-26 19:57:22 +03:00
@media only screen and (min-width: 576px) and (max-width: 768px) {
.term-icon{
position: relative;
top: 3px;
}
.term-btn{
text-transform: uppercase;
}
#tryIt{
position: fixed;
right: 20px;
bottom: 20px;
background-color: #8000ff;
border: none;
color: white;
font-familY: "pp-neue-machina";
padding: 5px 20px;
}
.traffic-light{
height: 16px;
width: 16px;
border: 1px solid gray;
border-radius: 100px;
display: inline-block;
margin-right: 5px;
}
.terminal{
height: auto;
min-height: 449px;
width: 100%;
display: block;
margin-left: auto;
margin-right: auto;
margin-top:-0.3vw;
margin-bottom: -8.371vw;
border-radius: 10px;
background-color: #1a1a1a;
border: 1px solid gray;
box-shadow: 0px 10px 18px rgba(10, 05, 05, .5);
animation: float 3s ease-in-out infinite;
}
.terminal-bar{
height: 30px;
border-radius: 8px 8px 0px 0px;
border-bottom: 1px solid gray;
}
#terminal-input:after {
content: "|";
color: green;
position: absolute;
left: 0;
animation: blink 1s linear infinite;
}
@keyframes blink {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
#terminal-output {
white-space: pre;
display: inline-block;
}
#terminal-input {
position: relative;
display: inline-block;
}
.terminal-content{
overflow: hidden;
}
2023-01-25 23:32:35 +03:00
}
2023-01-26 19:57:22 +03:00
@media only screen and (max-width: 576px) {
.term-icon{
position: relative;
top: 3px;
}
.term-btn{
text-transform: uppercase;
}
#tryIt{
position: fixed;
right: 20px;
bottom: 20px;
background-color: #8000ff;
border: none;
color: white;
font-familY: "pp-neue-machina";
padding: 5px 20px;
}
.traffic-light{
height: 16px;
width: 16px;
border: 1px solid gray;
border-radius: 100px;
display: inline-block;
margin-right: 5px;
}
.terminal{
height: auto;
min-height: 449px;
width: 100%;
display: block;
margin-left: auto;
margin-right: auto;
margin-top:-0.3vw;
margin-bottom: -8.371vw;
border-radius: 10px;
background-color: #1a1a1a;
border: 1px solid gray;
box-shadow: 0px 10px 18px rgba(10, 05, 05, .5);
animation: float 3s ease-in-out infinite;
}
.terminal-bar{
height: 30px;
border-radius: 8px 8px 0px 0px;
border-bottom: 1px solid gray;
}
#terminal-input:after {
content: "|";
color: green;
position: absolute;
left: 0;
animation: blink 1s linear infinite;
}
@keyframes blink {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
#terminal-output {
white-space: pre;
display: inline-block;
}
#terminal-input {
position: relative;
display: inline-block;
}
.terminal-content{
overflow: hidden;
}
2023-01-26 01:26:34 +03:00
}
2023-01-21 02:05:17 +03:00
</style>
2022-09-07 22:49:07 +03:00
2022-09-08 22:53:16 +03:00
<!-- Teal Impact Section -->
2022-09-08 22:46:27 +03:00
2023-02-02 00:57:42 +03:00
<section class="teal-bg impact-section">
<div class="container two-boxes">
2023-01-31 19:09:45 +03:00
<div class="row">
<div class="col">
2022-09-28 21:30:26 +03:00
<div>
2023-02-01 20:01:06 +03:00
<h2 class="black display-4 text-center" style="z-index:2;">THIS ISNT A PACKAGE MANAGER. TEA IS A UNIFIED PACKAGING INFRASTRUCTURE.</h2>
2022-09-28 21:30:26 +03:00
</div>
2022-09-08 22:23:13 +03:00
</div>
</div>
2023-02-01 20:01:06 +03:00
<div class="row one-box-up">
<div class="col">
<p class="text-center black">NO. OF REPOS</p>
<h1 class="display-1 text-center black"><span id="stat-one">56,987</span></h1>
</div>
<div class="col">
<p class="text-center black">NO. OF MAINTAINERS</p>
<h1 class="display-1 text-center black"><span id="stat-two">56,987</span></h1>
</div>
<div class="col">
<p class="text-center black">STAR COUNT</p>
<a href="https://github.com/teaxyz/cli/stargazers" target="_blank"><h1 class="display-1 text-center black"><span class="stargazers">56,987</span></h1></a>
</div>
<div class="col">
<p class="text-center black">CURRENT RELEASE</p>
<a href="https://github.com/teaxyz/cli/releases" target="_blank"><h1 class="display-1 text-center black"><span class="release" style="text-transform:lowercase;">56,987</span></h1></a>
</div>
</div>
2022-09-08 22:00:35 +03:00
</div>
2022-09-07 22:49:07 +03:00
</section>
2022-09-08 22:53:16 +03:00
2022-09-28 21:30:26 +03:00
<style>
2023-01-24 03:18:45 +03:00
i{
font-weight: 900 !important;
}
.single-grid-row{
margin-top: -1.6vw;
}
2022-09-28 21:30:26 +03:00
.box {
display: flex;
align-items: center;
justify-content: center;
}
.box div {
}
</style>
2022-09-08 22:53:16 +03:00
2023-01-24 17:00:22 +03:00
<!-- Features -->
2023-02-01 20:01:06 +03:00
<section>
2023-01-24 17:00:22 +03:00
<div class="container">
2023-02-01 20:01:06 +03:00
<div class="row">
<div class="col-8">
2023-01-31 19:09:45 +03:00
<h2 class="display-3">TO CALL TEA REVOLUTIONARY WOULD BE AN UNDERSTATEMENT. <a href="https://twitter.com/mxcl?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor">@MXCL</a> HAS SET A NEW BAR.</h2>
2023-02-01 20:01:06 +03:00
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
2023-01-24 17:00:22 +03:00
</div>
2023-01-31 19:09:45 +03:00
<div class="col">
2023-02-01 20:01:06 +03:00
<!-- Homebrew -->
<div class="speed-terminal mb-3" style="box-shadow:none;">
<div class="terminal-bar black-bg flex-start p-1 ps-3">
<div class="traffic-light"></div>
<div class="traffic-light"></div>
<div class="traffic-light"></div>
2023-01-24 17:00:22 +03:00
</div>
2023-02-01 20:01:06 +03:00
<div class="terminal-content p-xl-5 p-lg-5 p-md-5 p-sm-2 p-3">
<p class="teal small"></p>
2023-01-24 17:00:22 +03:00
</div>
</div>
2023-02-01 20:01:06 +03:00
<!-- tea -->
<div class="speed-terminal">
<div class="terminal-bar black-bg flex-start p-1 ps-3">
<div class="traffic-light"></div>
<div class="traffic-light"></div>
<div class="traffic-light"></div>
</div>
<div class="terminal-content p-xl-5 p-lg-5 p-md-5 p-sm-2 p-3">
<p class="teal small"></p>
</div>
</div>
2023-01-24 17:00:22 +03:00
</div>
</div>
2023-02-01 20:01:06 +03:00
</div>
</section>
<!-- Homebrew v. tea Section -->
<section class="features">
<div class="container">
2023-01-24 17:00:22 +03:00
2023-02-02 00:57:42 +03:00
<div class="divider two-boxes-down">
<hr>
</div>
2023-01-24 22:52:37 +03:00
<!-- First -->
2023-01-31 19:09:45 +03:00
<div class="row two-boxes-down">
2023-01-25 00:39:11 +03:00
<div class="col-xl-7 col-lg-6 col-md-12 col-sm-12 col-12 mb-xl-0 mb-lg-0 mb-md-5 mb-sm-5 mb-5 flex order-2">
2023-01-24 22:52:37 +03:00
<div class="feature-content ps-xl-5 ps-lg-3 ps-md-0 ps-sm-0 ps-0">
2023-01-30 21:43:51 +03:00
<h2 class="display-4">tea magic</h2>
2023-01-24 22:52:37 +03:00
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
<p class="mb-xl-5 mb-lg-5 mb-md-3 mb-sm-3 mb-3">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<div class="">
<a href="https://github.com/teaxyz/cli#magic" target="_blank">
<button class="hbtn hb-fill-right" id="hb-btn" style="text-transform:uppercase;"><i class="btn-icon icon-github"></i>VIEW README<span style="text-transform:lowercase;">.md</span></button>
</a>
2023-01-24 20:19:09 +03:00
</div>
2023-01-24 19:52:46 +03:00
</div>
</div>
2023-01-25 00:39:11 +03:00
<div class="col-xl-5 col-lg-6 col-md-12 col-sm-12 xol-12 pb-xl-0 pb-lg-0 pb-md-5 pb-sm-5 pb-5 mt-xl-0 mt-lg-0 mt-md-5 mt-sm-5 mt-5">
2023-01-24 19:36:25 +03:00
<div class="feature-terminal">
<div class="terminal-bar black-bg flex-start p-1 ps-3">
<div class="traffic-light"></div>
<div class="traffic-light"></div>
<div class="traffic-light"></div>
</div>
<div class="terminal-content p-xl-5 p-lg-5 p-md-5 p-sm-2 p-3">
<p class="teal small">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
2023-01-24 19:36:25 +03:00
</div>
</div>
</div>
</div>
2023-02-02 00:57:42 +03:00
<div class="divider two-boxes-down">
<hr>
</div>
2023-01-26 23:49:04 +03:00
2023-01-24 22:52:37 +03:00
<!-- Second -->
2023-01-31 19:09:45 +03:00
<div class="row two-boxes-down">
2023-01-31 23:52:03 +03:00
<div class="col-xl-7 col-lg-6 col-md-12 col-sm-12 col-12 mb-xl-0 mb-lg-0 mb-md-5 mb-sm-5 mb-5 order-xl-1 order-lg-1 order-md-2 order-sm-2 order-2 flex">
2023-01-31 19:09:45 +03:00
<div class="feature-content pe-xl-5 pe-lg-3 pe-md-0 pe-sm-0 pe-0">
<h2 class="display-4">Developer Environments</h2>
2023-01-24 22:52:37 +03:00
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
<p class="mb-xl-5 mb-lg-5 mb-md-3 mb-sm-3 mb-3">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<div class="">
2023-01-25 00:12:57 +03:00
<a href="https://github.com/teaxyz/cli#magic" target="_blank">
<button class="hbtn hb-fill-right" id="hb-btn" style="text-transform:uppercase;"><i class="btn-icon icon-github"></i>VIEW README<span style="text-transform:lowercase;">.md</span></button>
2023-01-24 22:52:37 +03:00
</a>
</div>
2023-01-24 19:52:46 +03:00
</div>
</div>
2023-01-31 23:52:03 +03:00
<div class="col-xl-5 col-lg-6 col-md-12 col-sm-12 xol-12 pb-xl-0 pb-lg-0 pb-md-5 pb-sm-5 pb-5 mt-xl-0 mt-lg-0 mt-md-5 mt-sm-5 mt-5 order-xl-2 order-lg-2 order-md-1 order-sm-1 order-1">
2023-01-24 19:36:25 +03:00
<div class="feature-terminal">
<div class="terminal-bar black-bg flex-start p-1 ps-3">
<div class="traffic-light"></div>
<div class="traffic-light"></div>
<div class="traffic-light"></div>
</div>
<div class="terminal-content p-xl-5 p-lg-5 p-md-5 p-sm-2 p-3">
<p class="teal small">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
2023-01-24 19:36:25 +03:00
</div>
</div>
</div>
</div>
2023-02-02 00:57:42 +03:00
<div class="divider two-boxes-down">
<hr>
</div>
2023-01-25 00:39:11 +03:00
2023-01-24 22:52:37 +03:00
<!-- Third -->
2023-01-31 19:09:45 +03:00
<div class="row one-box-down">
2023-01-25 00:39:11 +03:00
<div class="col-xl-7 col-lg-6 col-md-12 col-sm-12 col-12 mb-xl-0 mb-lg-0 mb-md-5 mb-sm-5 mb-5 flex order-2">
2023-01-24 22:52:37 +03:00
<div class="feature-content ps-xl-5 ps-lg-3 ps-md-0 ps-sm-0 ps-0">
2023-01-31 19:09:45 +03:00
<h2 class="display-4">tea scripts</h2>
2023-01-24 22:52:37 +03:00
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
<p class="mb-xl-5 mb-lg-5 mb-md-3 mb-sm-3 mb-3">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<div class="">
2023-01-25 00:12:57 +03:00
<a href="https://github.com/teaxyz/cli#magic" target="_blank">
<button class="hbtn hb-fill-right" id="hb-btn" style="text-transform:uppercase;"><i class="btn-icon icon-github"></i>VIEW README<span style="text-transform:lowercase;">.md</span></button>
2023-01-24 22:52:37 +03:00
</a>
</div>
2023-01-24 19:52:46 +03:00
</div>
</div>
2023-01-25 00:39:11 +03:00
<div class="col-xl-5 col-lg-6 col-md-12 col-sm-12 xol-12 pb-xl-0 pb-lg-0 pb-md-5 pb-sm-5 pb-5 mt-xl-0 mt-lg-0 mt-md-5 mt-sm-5 mt-5">
2023-01-24 19:36:25 +03:00
<div class="feature-terminal">
<div class="terminal-bar black-bg flex-start p-1 ps-3">
<div class="traffic-light"></div>
<div class="traffic-light"></div>
<div class="traffic-light"></div>
</div>
<div class="terminal-content p-xl-5 p-lg-5 p-md-5 p-sm-2 p-3">
<p class="teal small">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
2023-01-24 19:36:25 +03:00
</div>
</div>
</div>
</div>
</div>
</section>
2023-01-25 00:12:57 +03:00
<div class="full-width-cta-container">
{{- partial "full-width-cta-split.html" . -}}
</div>
2023-01-24 19:52:46 +03:00
2023-01-24 17:00:22 +03:00
<style>
2023-01-24 22:52:37 +03:00
.btn-icon{
position: relative;
top:2px;
}
#hb-btn{
height: 75px !important;
}
2023-01-24 19:36:25 +03:00
.feature-row{
border: 2px solid gray;
}
.feature-terminal{
width: 100%;
2023-01-24 20:19:09 +03:00
height: 100%;
2023-01-24 19:36:25 +03:00
border: 2px solid gray;
background-color: #1a1a1a;
border-radius: 10px;
2023-01-24 22:52:37 +03:00
box-shadow: 0px 10px 18px #121212;
animation: float 3s ease-in-out infinite;
}
2023-01-25 00:12:57 +03:00
.speed-terminal{
width: 100%;
height: auto;
2023-02-01 20:01:06 +03:00
min-height: 50%;
2023-01-25 00:12:57 +03:00
border: 2px solid gray;
background-color: #1a1a1a;
border-radius: 10px;
animation: float 3s ease-in-out infinite;
}
2023-01-24 22:52:37 +03:00
@keyframes float {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-5px);
}
100% {
transform: translateY(0);
}
2023-01-24 19:36:25 +03:00
}
2023-01-24 17:00:22 +03:00
</style>
2023-01-31 23:52:03 +03:00
<!-- Getting Started -->
<section class="gs-section">
<div class="container">
<div class="row two-boxes">
<div class="col-xl-5 col-lg-5 col-md-12 col-sm-12 col-12 mb-5">
<div class="gs-parent">
<div class="gs-content">
<h2 class="display-3">Getting started with tea!</h2>
<p class="lead">Installing tea is easy and convenient, with multiple options to choose from.</p>
<p class="mb-5">Tea is a standalone, cross-platform binary that can be installed by cURLing or using a package manager like brew. Additionally, there's an installer available that provides shell magic and sets up the environment. The one-liner abstracts away the installation process and creates a sandbox for running code. With the installation, there's no need for a preamble in tutorials and blog posts. The installer also updates tea. The binary is supported on Linux, macOS, and WSL and will soon be available for Windows natively. Another option for installation is using GitHub Actions, which installs dependencies and makes tea accessible in the workflow.</p>
<a href="https://github.com/teaxyz/cli#getting-started" target="_blank">
<button class="hbtn hb-fill-right" id="hb-btn" style="text-transform:uppercase;"><i class="btn-icon icon-github"></i>VIEW README<span style="text-transform:lowercase;">.md</span></button>
</a>
</div>
</div>
<style>
.gs-parent{
}
.gs-content{
}
</style>
</div>
<div class="col-xl-7 col-lg-7 col-md-12 col-sm-12 col-12 ps-xl-5 ps-lg-5 ps-md-0 ps-sm-3 ps-3">
<div class="">
<!-- terminal description -->
<p class="mb-4 lead light-gray">If you want teas shell magic, use the installer:</p>
<!-- Terminal sample -->
<div class="terminal flex term-getting-started term-lead">
<div class="terminal-bar black-bg flex-start p-1 ps-3">
<div class="traffic-light"></div>
<div class="traffic-light"></div>
<div class="traffic-light"></div>
</div>
<div class="p-5">
<div class="terminal-content">
<p>sh <(curl https://tea.xyz)</p>
</div>
</div>
</div>
</div>
<div class="vertical-rule"></div>
<div class="circle mb-3"></div>
<style>
.vertical-rule {
width: 2px;
height: 75px;
background-color: #00ffd0;
display: block;
margin-left: auto;
margin-right: auto;
}
.circle{
width:12px;
border: 2px solid #00ffd0;
height: 12px;
border-radius: 30px;
display: block;
margin-left: auto;
margin-right: auto;
}
.vertical-rule-gray {
width: 1px;
height: 75px;
background-color: #949494;
display: block;
margin-left: auto;
margin-right: auto;
}
.circle-gray{
width:12px;
border: 1px solid #949494;
height: 12px;
border-radius: 30px;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
<div>
<!-- terminal description -->
<p class="mb-4 light-gray">This will confirm before setting up ~/.tea and adding to your ~/.shellrc. Our one-liner even abstracts installing tea itself:</p>
<!-- Terminal sample -->
<div class="terminal flex term-getting-started">
<div class="terminal-bar black-bg flex-start p-1 ps-3">
<div class="traffic-light"></div>
<div class="traffic-light"></div>
<div class="traffic-light"></div>
</div>
<div class="p-5">
<div class="terminal-content">
<p>sh <(curl tea.xyz) bun run start</p>
</div>
</div>
</div>
</div>
<div class="vertical-rule-gray"></div>
<div class="circle-gray mb-3"></div>
<div>
<!-- terminal description -->
<p class="mb-4 light-gray">This way, you don't need to start with "how to install tea" in your tutorials and blog posts. The installer also updates tea. If you hate installers, use brew:</p>
<!-- Terminal sample -->
<div class="terminal flex term-getting-started">
<div class="terminal-bar black-bg flex-start p-1 ps-3">
<div class="traffic-light"></div>
<div class="traffic-light"></div>
<div class="traffic-light"></div>
</div>
<div class="p-5">
<div class="terminal-content">
<p>$ brew install teaxyz/pkgs/tea-cli</p>
</div>
</div>
</div>
</div>
<div class="vertical-rule-gray"></div>
<div class="circle-gray mb-3"></div>
<div class="mb-3">
<!-- terminal description -->
<p class="mb-4 light-gray">You can also install tea through GitHub Actions:</p>
<!-- Terminal sample -->
<div class="terminal flex term-getting-started">
<div class="terminal-bar black-bg flex-start p-1 ps-3">
<div class="traffic-light"></div>
<div class="traffic-light"></div>
<div class="traffic-light"></div>
</div>
<div class="p-5">
<div class="terminal-content">
<p>- uses: teaxyz/setup@v0</p>
</div>
</div>
</div>
</div>
<p class="light-gray">tea is supported on macOS >= 11, Linux (glibc >= 23), and WSL, with Windows native support coming soon.</p>
</div>
</div>
</div>
</section>
<style>
.term-getting-started{
min-height: 0px !important;
height: auto;
width: 100% !important;
animation: none !important;
margin-bottom: 0 !important;
}
.term-lead{
border: 2px solid #00ffd0;
}
</style>
<div class="full-width-cta-container">
{{- partial "full-width-cta-split.html" . -}}
</div>
2022-09-13 18:12:56 +03:00
2023-02-02 00:57:42 +03:00
<!--
2022-09-22 00:37:41 +03:00
<section class="statistics" style="padding-top: 8.371vw !important; padding-bottom: 8.371vw !important;">
2022-09-21 23:37:13 +03:00
<div class="gen-art" id="gen-art-5"></div>
2022-09-22 00:37:41 +03:00
<div class="gen-art" id="gen-art-6"></div>
<div class="gen-art" id="gen-art-9"></div>
2022-09-22 00:37:41 +03:00
2022-09-13 18:12:56 +03:00
<div class="container">
2022-09-14 20:04:15 +03:00
<div class="row mb-5">
2022-09-27 01:29:27 +03:00
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-12">
2023-01-26 20:21:06 +03:00
<h2 class="display-2">sta'tea'stics</h2>
2023-01-18 00:03:11 +03:00
<p class="lead">Much like its predecessor, <a href="https://brew.sh/">brew</a>, tea is seeing a rapid rate of adoption. Developers around the world are doing amazing things with our next&#8208;generation, cross&#8208;platform package manager.</p>
<p>In true open&#8208;source fashion, we&#39;re asking the community for <a href="https://github.com/teaxyz/cli">contributions to tea/cli</a>, as well as packaging assistance in an effort to add the web&#39;s top 300 packages to <a href="https://github.com/teaxyz/pantry.zero#contributing">our pantry</a>. Now is the time to be an early contributor in what will inevitably become the foundation of the future internet.</p><br>
2022-09-14 19:17:59 +03:00
</div>
2022-09-13 18:12:56 +03:00
</div>
2022-09-14 20:04:15 +03:00
<div class="row">
<div class="col">
<div class="metric-block" style="float:right; margin-top:-300px;">
<p class="stat-head">NUMBER OF REPOS</p>
<p class="stat-number teal" id="stat-one"></p>
<p class="gray stat-small-text">Number of rated repos owned by tea&#8208;authenticated developers.</p>
2022-09-14 20:04:15 +03:00
</div>
<div class="gen-art-mobile" id="m-gen-art-3"></div>
<div class="gen-art-mobile" id="m-gen-art-4"></div>
<img class="mobile-grid-element" src="/Images/mobile-grid-element-3-rows.svg" alt="grid">
2022-09-14 20:04:15 +03:00
<div class="metric-block mb-5 mt-4">
<p class="stat-head">AUTHENTICATED DEVS</p>
<p class="stat-number teal"><span id="count2"></span></p>
<p class="gray stat-small-text">This is the number of OSS developers who have chosen to join the battle for the future of the internet.</p>
2022-09-14 20:04:15 +03:00
</div>
<div class="gen-art-mobile" id="m-gen-art-5"></div>
<div class="gen-art-mobile" id="m-gen-art-6"></div>
<img class="mobile-grid-element" src="/Images/mobile-grid-element-3-rows.svg" alt="grid">
2022-09-14 20:04:15 +03:00
<div class="metric-block" style="float:right;">
<p class="stat-head">TEA MAINTAINERS</p>
<p class="stat-number teal" id="stat-two"></p>
<p class="gray stat-small-text">Number of tea-maintainers for those <span id="stat-one-small"></span> repos.</p>
2022-09-14 20:04:15 +03:00
</div>
<div class="gen-art-mobile" id="m-gen-art-7"></div>
<div class="gen-art-mobile" id="m-gen-art-8"></div>
<img class="mobile-grid-element" src="/Images/mobile-grid-element-3-rows.svg" alt="grid">
2022-09-14 20:04:15 +03:00
</div>
</div>
2022-09-13 18:12:56 +03:00
</div>
2022-09-08 22:53:16 +03:00
</section>
<div class="full-width-cta-container">
2023-01-26 20:21:06 +03:00
{{- partial "full-width-cta-split.html" . -}}
</div>
2023-02-02 00:57:42 +03:00
-->
2023-01-24 20:01:18 +03:00
2023-01-25 00:12:57 +03:00
<section>
2023-01-26 20:21:06 +03:00
<div class="container one-box-up one-box-down">
2023-01-25 00:39:11 +03:00
<div class="row one-box-down">
2023-01-25 00:12:57 +03:00
<div class="col">
<h2 class="display-3">DONT JUST TAKE OUR WORD FOR IT… TWITTERS BEEN SIPPING THE TEA TOO!</h2>
</div>
</div>
2023-01-27 01:41:41 +03:00
<div class="row twitter-desktop">
2023-01-25 19:20:12 +03:00
<div class="col-xl-4 col-lg-4 col-md-4 col-sm-12 col-12">
2023-01-25 00:39:11 +03:00
{{- partial "twitter-card.html" -}}
2023-01-25 00:12:57 +03:00
</div>
2023-01-25 19:20:12 +03:00
<div class="col-xl-4 col-lg-4 col-md-4 col-sm-12 col-12">
2023-01-25 00:39:11 +03:00
{{- partial "twitter-card.html" -}}
2023-01-25 00:12:57 +03:00
</div>
2023-01-25 19:20:12 +03:00
<div class="col-xl-4 col-lg-4 col-md-4 col-sm-12 col-12">
2023-01-25 00:39:11 +03:00
{{- partial "twitter-card.html" -}}
2023-01-25 00:12:57 +03:00
</div>
</div>
2023-01-27 01:41:41 +03:00
<div class="row twitter-mobile">
<div class="col">
<div class="swiper-container">
<div class="swiper-wrapper">
{{- range .Data.Pages }}
<div class="swiper-slide">
{{- partial "twitter-card.html" . -}}
</div>
{{- end }}
</div>
</div>
</div>
</div>
2023-01-25 00:12:57 +03:00
</div>
</section>
2023-01-25 00:53:02 +03:00
<hr>
<section>
<div class="container">
<div class="row two-boxes">
<div class="col">
<h2 class="display-3 text-center">Ready to start building?<br>All you need is tea.</h2>
<p class="lead text-center">Introducing teas +pkg syntax, the ultimate tool for streamlined open source access, allowing you to access the entire ecosystem with one command, compose and combine everything, and even more.</p>
</div>
</div>
</div>
</section>
<div class="full-width-cta-container">
{{- partial "full-width-cta-split.html" . -}}
</div>
2023-01-25 00:39:11 +03:00
<style>
2023-01-27 01:41:41 +03:00
@media only screen and (min-width: 576px) {
.twitter-desktop{
visibility: visible;
}
.twitter-mobile{
visibility: hidden;
display: none;
}
}
@media only screen and (max-width: 576px) {
.twitter-desktop{
visibility: hidden;
display: none;
}
.twitter-mobile{
visibility: visible;
}
}
2023-01-25 00:39:11 +03:00
.twitter-card{
border: 2px solid gray;
border-radius: 10px;
box-shadow: 0px 10px 18px #121212;
}
.title-bar{
height:30px;
border-bottom: 1px solid gray;
}
.title-bar i{
color: #2675f5;
}
</style>
2023-01-27 01:41:41 +03:00
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
<script>
var mySwiper = new Swiper ('.swiper-container', {
spaceBetween: 10,
freeMode: true,
direction: 'horizontal',
loop: true,
pagination: {
el: '.swiper-pagination',
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
})
</script>
2023-01-28 01:24:59 +03:00
<section class="one-box">
<div class="container">
2023-01-27 20:07:55 +03:00
<div class="row">
<h2 class="display-2">OSS wouldn't work without talented contributors like you.</h2>
<p class="mb-5">We at tea would like to give a big shout out to all the open-source developers out there. Your contributions and dedication to making the world a better place through technology is truly admirable. Thanks to your hard work and generosity, projects like teaxyz/cli can continue to improve and evolve. If you are interested in joining our team of code crusaders, we welcome you with open arms. Head on over to the teaxyz/cli repository on Github and start contributing today! Let's continue to make a positive impact on the world of technology together.</p>
2023-01-27 20:07:55 +03:00
</div>
<div class="row" id="contributors-list">
</div>
</div>
</section>
2023-01-27 20:57:08 +03:00
<hr>
<div class="row button-container flex">
<a href="https://github.com/teaxyz/cli/graphs/contributors" class="ps-0 pe-0 btn-div" id="btn-div-top" >
<button class="sbtn sb-fill-top">VIEW ALL CONTRIBUTORS</button>
</a>
<a href="https://github.com/teaxyz/cli#contributing" class="ps-0 pe-0 btn-div" id="btn-div" >
<button class="sbtn sb-fill-top">LEARN HOW TO CONTRIBUTE</button>
</a>
</div>
<hr>
2023-01-27 20:07:55 +03:00
<script>
$.getJSON("https://api.github.com/repos/teaxyz/cli/contributors", function(contributors) {
var contributorsList = $("#contributors-list");
$.each(contributors, function(i, contributor) {
contributorsList.append("<div class='col-3 col-sm-3 col-md-3 col-lg-1 col-xl-1'>" + "<a href='" + contributor.html_url + "' target='_blank'><img class='con-img mb-3' src='" + contributor.avatar_url + "'></a>" + "<p class='small' style='hyphens:auto;'>" + contributor.login + "</p>" + "</div>");
});
});
</script>
<style>
.con-img{
width:100%;
border-radius: 5px;
2023-01-30 21:43:51 +03:00
filter: grayscale(100);
2023-01-27 20:07:55 +03:00
background-color: gray;
transition: 0.1s ease-in-out;
}
.con-img:hover{
transform: translateY(-5px);
2023-01-30 21:43:51 +03:00
filter:none;
2023-01-27 20:07:55 +03:00
}
</style>
{{ end }}