2022-04-25 19:41:24 +03:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en" dir="ltr">
|
2022-05-09 20:28:09 +03:00
|
|
|
|
|
2022-05-07 21:24:10 +03:00
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
<title>Equitable Open‐Source for web3</title>
|
|
|
|
|
|
|
|
|
|
<!-- CSS only -->
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
|
|
|
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
2022-05-07 21:24:10 +03:00
|
|
|
|
<link rel="apple-touch-icon-precomposed" href="/favicon-180.png">
|
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Prompt:wght@700&display=swap"
|
|
|
|
|
rel="stylesheet">
|
2022-05-07 21:24:10 +03:00
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
|
|
|
<meta name="twitter:image:alt" content="sh <(curl tea.xyz)">
|
|
|
|
|
<meta name="twitter:title" content="tea.">
|
|
|
|
|
<meta name="twitter:description" content="something new is brewing.">
|
|
|
|
|
<meta name="twitter:image" content=" https://tea.xyz/cover.png">
|
|
|
|
|
<meta property="og:url" content="http://tea.xyz" />
|
|
|
|
|
<meta property="og:type" content="website" />
|
2022-05-19 01:32:20 +03:00
|
|
|
|
<meta property="og:title" content="tea.xyz" />
|
|
|
|
|
<meta property="og:description" content="Equitable Open‐Source for web3" />
|
2022-05-07 21:24:10 +03:00
|
|
|
|
<meta property="og:image" content="https://tea.xyz/cover.png" />
|
|
|
|
|
<meta property="og:image:alt" content="sh <(curl tea.xyz)" />
|
|
|
|
|
</head>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-07 21:24:10 +03:00
|
|
|
|
<body>
|
|
|
|
|
<style>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
.gf-container {
|
2022-05-04 01:18:25 +03:00
|
|
|
|
width: 80px;
|
|
|
|
|
height: 80px;
|
|
|
|
|
border-radius: 60px;
|
2022-05-09 20:28:09 +03:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2022-05-04 01:18:25 +03:00
|
|
|
|
position: fixed;
|
|
|
|
|
right: 15px;
|
|
|
|
|
bottom: 15px;
|
|
|
|
|
cursor: pointer;
|
2022-05-09 20:28:09 +03:00
|
|
|
|
box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
|
2022-05-04 01:18:25 +03:00
|
|
|
|
animation: pulse 2s infinite;
|
|
|
|
|
z-index: 200;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
.gf-container:hover {
|
2022-05-07 21:24:10 +03:00
|
|
|
|
animation: none;
|
2022-05-04 01:18:25 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes pulse {
|
2022-05-07 21:24:10 +03:00
|
|
|
|
0% {
|
2022-05-09 20:28:09 +03:00
|
|
|
|
-webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
|
2022-05-07 21:24:10 +03:00
|
|
|
|
}
|
2022-05-09 20:28:09 +03:00
|
|
|
|
|
2022-05-07 21:24:10 +03:00
|
|
|
|
70% {
|
2022-05-09 20:28:09 +03:00
|
|
|
|
-webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
|
2022-05-07 21:24:10 +03:00
|
|
|
|
}
|
2022-05-09 20:28:09 +03:00
|
|
|
|
|
2022-05-07 21:24:10 +03:00
|
|
|
|
100% {
|
2022-05-09 20:28:09 +03:00
|
|
|
|
-webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
|
2022-05-07 21:24:10 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-09 20:28:09 +03:00
|
|
|
|
|
2022-05-07 21:24:10 +03:00
|
|
|
|
@keyframes pulse {
|
|
|
|
|
0% {
|
2022-05-09 20:28:09 +03:00
|
|
|
|
-moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
|
|
|
|
|
box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
|
2022-05-07 21:24:10 +03:00
|
|
|
|
}
|
2022-05-09 20:28:09 +03:00
|
|
|
|
|
2022-05-07 21:24:10 +03:00
|
|
|
|
70% {
|
2022-05-09 20:28:09 +03:00
|
|
|
|
-moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
|
|
|
|
|
box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
|
2022-05-07 21:24:10 +03:00
|
|
|
|
}
|
2022-05-09 20:28:09 +03:00
|
|
|
|
|
2022-05-07 21:24:10 +03:00
|
|
|
|
100% {
|
2022-05-09 20:28:09 +03:00
|
|
|
|
-moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
|
|
|
|
|
box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
|
2022-05-07 21:24:10 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-04 01:18:25 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
.github-icon {
|
2022-05-04 01:18:25 +03:00
|
|
|
|
width: 60%;
|
|
|
|
|
margin-top: auto;
|
|
|
|
|
margin-bottom: auto;
|
|
|
|
|
}
|
2022-05-19 01:57:43 +03:00
|
|
|
|
|
|
|
|
|
.cal-btn{
|
|
|
|
|
float:right;
|
|
|
|
|
background-color:#327280;
|
|
|
|
|
width:200px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ama-text{
|
|
|
|
|
float:left;
|
|
|
|
|
margin-top:auto;
|
|
|
|
|
margin-bottom:auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
|
.cal-btn{
|
|
|
|
|
background-color:#327280;
|
|
|
|
|
width:100%;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ama-text{
|
|
|
|
|
float: none;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-07 21:24:10 +03:00
|
|
|
|
</style>
|
2022-05-04 01:18:25 +03:00
|
|
|
|
|
2022-05-07 21:24:10 +03:00
|
|
|
|
<a href="https://github.com/apps/tea-xyz/installations/new" class="gf-container" style="background-color:#8EC7BF;">
|
|
|
|
|
<img src="Images/github.svg" alt="" class="github-icon mx-auto">
|
2022-05-04 01:18:25 +03:00
|
|
|
|
|
2022-05-07 21:24:10 +03:00
|
|
|
|
</a>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-04 00:10:57 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<nav class="navbar bg-dark navbar-expand-lg navbar-dark sticky-top my-auto">
|
2022-05-07 21:24:10 +03:00
|
|
|
|
<div class="container-fluid top-nav">
|
|
|
|
|
<a class="navbar-brand" href="#"><img src="Images/tea-main-logo.svg" style="width:100px;"></a>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
|
|
|
|
|
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
2022-05-07 21:24:10 +03:00
|
|
|
|
<span>
|
|
|
|
|
<input type="checkbox" id="checkbox1" class="checkbox1 visuallyHidden">
|
|
|
|
|
<label for="checkbox1">
|
2022-05-04 00:32:41 +03:00
|
|
|
|
<div class="hamburger hamburger1">
|
2022-05-07 21:24:10 +03:00
|
|
|
|
<span class="bar bar1"></span>
|
|
|
|
|
<span class="bar bar2"></span>
|
|
|
|
|
<span class="bar bar3"></span>
|
|
|
|
|
<span class="bar bar4"></span>
|
2022-05-04 00:32:41 +03:00
|
|
|
|
</div>
|
2022-05-07 21:24:10 +03:00
|
|
|
|
</label></span>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</button>
|
|
|
|
|
<div class="collapse navbar-collapse pt-2 pb-2" id="navbarSupportedContent">
|
|
|
|
|
<ul class="navbar-nav ms-auto me-4 my-auto">
|
|
|
|
|
<li class="nav-item mt-lg-0 mt-md-0 mt-sm-3 mt-3">
|
|
|
|
|
<a class="nav-link active" aria-current="page" href="#">Home</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link" href="#why-tea">Why tea?</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link" href="#features">Features</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link" href="#community">Community</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link" href="https://medium.com/teaxyz">Blog</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link" href="https://linktr.ee/teaxyz">Linktree</a>
|
|
|
|
|
</li>
|
2022-05-18 19:18:36 +03:00
|
|
|
|
<li class="nav-item">
|
2022-05-19 01:18:22 +03:00
|
|
|
|
<a class="nav-link" href="/white-paper/">White Paper</a>
|
2022-05-18 19:18:36 +03:00
|
|
|
|
</li>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</ul>
|
2022-05-18 02:23:30 +03:00
|
|
|
|
<a class="btn btn-primary auth-btn mt-lg-0 mt-md-0 mt-sm-4 mt-4"
|
|
|
|
|
href="https://github.com/apps/tea-xyz/installations/new" role="button">Authenticate with tea<span
|
|
|
|
|
class="badge rounded-pill bg-primary ms-3"><span id="count1">287</span></span></a>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
</div>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Hero Section -->
|
|
|
|
|
|
|
|
|
|
<img id="tea-steam-dark-1" src="Images/tea-steam-dark-1.svg" alt="">
|
|
|
|
|
<img id="tea-steam-dark-2" src="Images/tea-steam-dark-2.svg" alt="">
|
|
|
|
|
<div class="container mb-lg-5 mb-md-5 mb-sm-0 mb-0 mt-lg-5 mt-md-5 mt-sm-0 mt-0">
|
|
|
|
|
<div class="row hero my-auto">
|
|
|
|
|
<div style="z-index:100; display:flex; flex-direction:column;" class="col-lg-6 col-sm-12">
|
|
|
|
|
<div style="margin-top:auto; margin-bottom:auto;">
|
|
|
|
|
<h1 class="display-1 mb-4"><span class="yellow">Equitable</span> Open‐Source for web3</h1>
|
|
|
|
|
<p class="mb-5 fs-sm-5 fs-lg-6 lead">The tools that build the internet have steeped too long. For the past two
|
|
|
|
|
decades, big tech has made trillions off the generosity of visionary developers and web pioneers… never
|
|
|
|
|
thanking, never mentioning, and certainly never paying. At tea, we’re brewing something to change that by
|
|
|
|
|
enabling developers (you) to continue doing what you love, while earning what you deserve.</p>
|
2022-05-18 00:24:18 +03:00
|
|
|
|
<a class="btn btn-primary auth-btn mb-3" href="https://github.com/apps/tea-xyz/installations/new"
|
2022-05-09 20:28:09 +03:00
|
|
|
|
role="button">Authenticate with tea<span class="badge rounded-pill bg-primary ms-3"><span
|
|
|
|
|
id="count2">287</span></span></a><br>
|
2022-05-19 01:25:39 +03:00
|
|
|
|
<a class="btn btn-primary mb-sm-5 mb-md-5 mb-5" id="whitepaper-btn" href="/white-paper/"
|
2022-05-18 19:18:36 +03:00
|
|
|
|
role="button">Read Our White Paper</a>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
</div>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-6 col-sm-12">
|
2022-05-19 01:57:43 +03:00
|
|
|
|
<div class="card ms-lg-5 ms-sm-0 mb-3" style="border-radius:15px; z-index:100;">
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="card-body my-auto"
|
|
|
|
|
style="display:flex; flex-direction:column; background-color: #23282C; border: 2px solid #54BAAB; border-radius:15px;">
|
|
|
|
|
<div class="p-lg-5 p-md-3 p-sm-0" style="margin-top:auto; margin-bottom:auto;">
|
|
|
|
|
<p class="card-title display-1"
|
|
|
|
|
style="color: #54BAAB; text-align:center; font-size: 6rem; font-family: 'Playfair Display', serif"><span
|
|
|
|
|
id="count"></span></p>
|
2022-05-18 02:23:30 +03:00
|
|
|
|
<p class="text-center" id="count-sub-text" style="text-transform:uppercase; color:#54BAAB;">Developers
|
|
|
|
|
Authenticated</p>
|
|
|
|
|
<h5 class="mb-3" style="text-align:center; font-size:2rem;"><span id="communitea">Join the<span>
|
2022-05-19 03:21:07 +03:00
|
|
|
|
communi'<span style="color:#54BAAB;">tea</span></h5>
|
|
|
|
|
<!-- ^^ deliberate prime rather than apostrophe -->
|
2022-05-18 02:23:30 +03:00
|
|
|
|
<p class="card-text lead" id="revolution-text" style="text-align:center;">The revolution is here. Be among
|
|
|
|
|
the first to authenticate your Github with tea. </p>
|
2022-05-19 01:57:43 +03:00
|
|
|
|
<p style="text-align:center;" id="auth-body-text">Early-adoption developers will be entitled to a variety of
|
2022-05-18 02:23:30 +03:00
|
|
|
|
exciting rewards,
|
2022-05-09 20:28:09 +03:00
|
|
|
|
including minted NFT certificates. Take a sip while it’s hot!</p>
|
|
|
|
|
</div>
|
2022-05-18 00:24:18 +03:00
|
|
|
|
<div class="box-auth-false">
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<p class="text-center my-auto p-3">This is your chance to be early! <a
|
|
|
|
|
style="color:#54BAAB; text-decoration:none;"
|
|
|
|
|
href="https://github.com/apps/tea-xyz/installations/new"><strong>Authenticate now</strong></a>.</p>
|
2022-05-03 19:28:21 +03:00
|
|
|
|
</div>
|
2022-05-18 00:24:18 +03:00
|
|
|
|
<div class="box-auth-true">
|
2022-05-18 02:23:30 +03:00
|
|
|
|
<p class="text-center my-auto p-3" style="color:#23282C;"><i class="bi bi-check-circle-fill lead pe-2"
|
|
|
|
|
style="color:#23282C;"></i>Authenticated as <span id="auth-username">[username]</span></p>
|
2022-05-18 00:24:18 +03:00
|
|
|
|
</div>
|
2022-05-03 19:28:21 +03:00
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
</div>
|
2022-05-19 01:57:43 +03:00
|
|
|
|
|
|
|
|
|
<div class="card ms-lg-5 ms-sm-0" style="border-radius:15px; z-index:100;">
|
|
|
|
|
<div class="card-body my-auto"
|
|
|
|
|
style="display:flex; flex-direction:column; background-color: #23282C; border: 2px solid #54BAAB; border-radius:15px;">
|
|
|
|
|
<div class="p-lg-2 p-md-2 p-sm-0">
|
2022-05-19 02:23:46 +03:00
|
|
|
|
<p class="lead mt-2 ama-text">Tune into our weekly AMAs</p>
|
2022-05-19 01:57:43 +03:00
|
|
|
|
<a class="btn btn-primary cal-btn" href="https://calendar.google.com/event?action=TEMPLATE&tmeid=NWIzOTJrY3Q0M21hMHFlMmpkZmJnMHZuYWhfMjAyMjA1MTVUMTcwMDAwWiBuaWNrQHRlYS54eXo&tmsrc=nick%40tea.xyz&scp=ALL"
|
|
|
|
|
role="button">Add to Calendar</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-05-07 21:24:10 +03:00
|
|
|
|
</div>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Mission Statement -->
|
|
|
|
|
<img id="tea-steam-1" src="Images/tea-steam-1.svg" alt="">
|
|
|
|
|
<img id="tea-steam-2" src="Images/tea-steam-2.svg" alt="">
|
|
|
|
|
<div class="row mission pb-5 pt-5">
|
|
|
|
|
<div class="container pb-5 pt-5">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col">
|
|
|
|
|
<h2 class="charcoal display-4" style="text-align:center;">The tools you need to keep on building.</h2>
|
|
|
|
|
<p class="charcoal lead" style="text-align:center;">Like its predecessor, brew, tea is the base of the
|
|
|
|
|
developer stack–seated beneath the tools that build the internet. Unlike its predecessor, tea leverages
|
|
|
|
|
blockchain and web3 technology to eliminate anonymity and deliver compensation.</p>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Web2 -->
|
|
|
|
|
<div class="container mb-5 mt-5 web2-container" id="why-tea">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-6 col-md-12 col-sm-12 col-12 my-auto mb-5">
|
|
|
|
|
<p class="mb-5">WEB2</p>
|
|
|
|
|
<h3 class="mb-4 display-4">Thankless <span class="yellow">tech giants profit</span> from the generosity of
|
|
|
|
|
open‐source developers.</h3>
|
|
|
|
|
<p class="mb-4">For more than twenty years the Internet has been built upon the fruits of freely available
|
|
|
|
|
open‐source. Whenever a project enabled new functionality it was (whether desired or not) added as a
|
|
|
|
|
new brick in the tower of infrastructure; giving the Internet new powers and capabilities; becoming a new
|
|
|
|
|
foundation for all the innovations that followed. The maintainers of these new bricks became thanklessly
|
|
|
|
|
unpaid volunteers.</p>
|
|
|
|
|
<hr class="mb-4">
|
|
|
|
|
<h4><img src="Images/no-compensation.svg" alt="no compensation icon" class="feature-icon me-2"> No Compensation
|
|
|
|
|
</h4>
|
|
|
|
|
<p class="mb-4 ps-5">Developers contribute innovations (bricks) to the tower of infrastructure that serves as a
|
|
|
|
|
feeding ground for big tech. Their efforts are capitalized on, yet they see none of that profit.</p>
|
|
|
|
|
<hr class="mb-4">
|
|
|
|
|
<h4><img src="Images/centralized.svg" alt="centralized icon" class="feature-icon me-2"> Centralized</h4>
|
|
|
|
|
<p class="mb-4 ps-5">Entire stacks are left at the mercy of single, proprietary vendors who control their
|
|
|
|
|
composition and deployment. This turns the “tower of bricks” into a game of Jenga.</p>
|
|
|
|
|
<hr class="mb-4">
|
|
|
|
|
<h4><img src="Images/obligation_maintain.svg" alt="obligation icon" class="feature-icon me-2"> Obligation to
|
|
|
|
|
Maintain</h4>
|
|
|
|
|
<p class="ps-5">Open‐source authors are pressured by their peers and the community at large to
|
|
|
|
|
continuously maintain and update their contributions... again, without pay or gratitude.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-6 col-sm-12 col-md-6 col-12 mx-auto web2-col my-auto">
|
|
|
|
|
<img class="web2-tower" style="display:block; margin-left:auto; margin-right:auto;" src="Images/web2-tower.svg"
|
|
|
|
|
alt="">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Web3 -->
|
|
|
|
|
<div class="container web3-container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col order-lg-1 order-sm-2 order-2">
|
|
|
|
|
<img class="mt-5 web3-tower" src="Images/web-3-towerAsset 2.svg" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-6 col-sm-12 my-auto order-lg-2 order-sm-1 order-1">
|
|
|
|
|
<p class="mb-5">WEB3</p>
|
|
|
|
|
<h3 class="mb-4 display-4">Blockchain <span class="yellow">empowers developers</span> to contribute to
|
|
|
|
|
open‐source while <span class="yellow">reaping overdue benefits</span>.</h3>
|
|
|
|
|
<p class="mb-4">The problem has always existed, but the technology to solve it hasn’t. tea facilitates the graph
|
|
|
|
|
of open source that underpins all modern digital infrastructure. We’re putting it on‐chain creating a map
|
|
|
|
|
we’ll use to guide value redistribution to the open source that makes the Internet possible.
|
|
|
|
|
We’re not changing how open source works—it’s still free. web3 has introduced powerful new paradigms that
|
|
|
|
|
allow value to be compensated without direct payment. Creator economy, meet open source.</p>
|
|
|
|
|
<hr class="mb-4">
|
|
|
|
|
<h4><img src="Images/token_rewards.svg" alt="token rewards icon" class="me-2"> Token Rewards</h4>
|
|
|
|
|
<p class="mb-4 ps-5">Through tea, open‐source contributors are rewarded with our flagship token relative
|
|
|
|
|
to aggregate usage and sweat equity. Now, devs are able to monetize their generosity. </p>
|
|
|
|
|
<hr class="mb-4">
|
|
|
|
|
<h4><img src="Images/decentralized.svg" alt="tea.xyz is decentralized" class="me-2"> De-Centralized</h4>
|
|
|
|
|
<p class="mb-4 ps-5">web3 turns the “Jenga” game back into a tower of stable bricks. By putting everything
|
|
|
|
|
on-chain, we’re ensuring that entire stacks will no longer sit at the mercy of sole developers.</p>
|
|
|
|
|
<hr class="mb-4">
|
|
|
|
|
<h4><img src="Images/transferrable.svg" alt="tea.xyz is transferrable" class="me-2"> Transferrable</h4>
|
|
|
|
|
<p class="ps-5">Devs are not obligated to dedicate years to maintaining a single project. Instead, they can
|
|
|
|
|
transfer ownership to another interested party and move on to creating something else. </p>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
|
|
|
|
</div>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Features & Benefits -->
|
|
|
|
|
<div class="container mb-5 mt-5" id="features">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col mb-5">
|
|
|
|
|
<h2 class="display-4" style="text-align:center;">What makes it <span class="yellow">great</span>?</h2>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-12 col-sm-12 col-md-12 col-lg-4 mb-4">
|
|
|
|
|
<div class="card mb-4">
|
|
|
|
|
<div class="card-body p-4">
|
|
|
|
|
<img src="Images/cross-platform.svg" alt="" class="mb-3">
|
|
|
|
|
<h4 class="mb-4">Cross Platform Compatible</h4>
|
|
|
|
|
<p>Wherever you develop, wherever your CI/CD runs, however you deploy your app, tea is there. We abstract
|
|
|
|
|
this detail away so you can get on with the work that matters to you.<br><br>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<code class="language-javascript">$ sh <(curl tea.xyz) ci</code><br><br>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
Your README, blog post or internal install instructions can all use the same, simple one‐liner.<br><br>
|
|
|
|
|
|
|
|
|
|
<code class="language-javascript">$ sh <(curl tea.xyz) install deno.land</code><br><br>
|
|
|
|
|
|
|
|
|
|
Here, our one‐liner installs deno to ./bin/deno. If tea is installed it integrates with that installation,
|
|
|
|
|
if not the script just exits; tea itself is not installed either way. We’re happy to be just the
|
|
|
|
|
transmission layer.</p>
|
2022-05-07 21:24:10 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="card">
|
|
|
|
|
<div class="card-body p-4">
|
|
|
|
|
<img src="Images/delightful-dev.svg" alt="" class="mb-3">
|
|
|
|
|
<h4 class="mb-4">Delightful DevExperience</h4>
|
|
|
|
|
<p>tea is built with a “it just works” philosophy. It’s our job to set you up for success and then get out
|
|
|
|
|
of your way so you can work as effectively as possible. Development is hard enough without the toolset
|
|
|
|
|
being a source of pain as well.</p>
|
|
|
|
|
|
|
|
|
|
<p>Much like its predecessor, brew, tea is full of delightful touches. You’ll have to try it and see.</p>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<p>Of course delightful also means fast. You’ve got plenty to do and need tools that respect your time.</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="col-12 col-sm-12 col-md-12 col-lg-4">
|
|
|
|
|
<div class="card mb-4">
|
|
|
|
|
<div class="card-body p-4">
|
|
|
|
|
<img src="Images/designed-teams.svg" alt="" class="mb-3">
|
|
|
|
|
<h4 class="mb-4">Designed for tea’ms</h4>
|
|
|
|
|
<p>Good developers create. Great developers collaborate.</p>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<p>You don’t work alone and neither should the tool that sits at the root of your stack. We’re designing tea
|
|
|
|
|
to be super great for teams.</p>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<p>tea sets your stack up right and makes working with it a delight so you and your team can focus on
|
|
|
|
|
building what matters.</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="card mb-4">
|
|
|
|
|
<div class="card-body p-4">
|
|
|
|
|
<img src="Images/decentralized-secure.svg" alt="" class="mb-3">
|
|
|
|
|
<h4 class="mb-4">Decentralized & Secure</h4>
|
|
|
|
|
<p>tea’s decentralization offers tangible benefits to ecosystem security. Every layer of your apps and dapps
|
|
|
|
|
is signed and verified on‐chain. Users can rest assured that the software they are using is what all its
|
|
|
|
|
creators intended.</p>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<p>In day to day development our decentralization increases reliability (leftpad is a sore memory) and gives
|
|
|
|
|
developers the flexibility they need to turn inspiration into empires; when a single proprietry vendor
|
|
|
|
|
controls how your stack is composed and deployed your stack is centralized and under their control.</p>
|
2022-05-07 21:24:10 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<p>We’re also saying goodbye to centralization at the installation layer. Say hello to native, built‐in
|
|
|
|
|
“version management”† for every tool in your stack and goodbye to dependency hell.</p>
|
2022-05-07 21:24:10 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<i style="color:#B7C7C7;">† similar to tools like rbenv, nvm or Python’s virtualenv.</i></p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-05-07 21:24:10 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
2022-05-07 21:24:10 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="col-12 col-sm-12 col-md-12 col-lg-4">
|
|
|
|
|
<div class="card mb-4">
|
|
|
|
|
<div class="card-body p-4">
|
|
|
|
|
<img src="Images/open-governance.svg" alt="" class="mb-3">
|
|
|
|
|
<h4 class="mb-4">Open Governance</h4>
|
|
|
|
|
<p>We believe the open source community needs to direct and control the ecosystem we will help launch. The
|
|
|
|
|
DAO will be an open, transparent and evolving governance structure where the depth of your contributions
|
|
|
|
|
will matter more than the depth of your pocket.</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-05-07 21:24:10 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="card">
|
|
|
|
|
<div class="card-body p-4">
|
|
|
|
|
<img src="Images/help-build.svg" alt="" class="mb-3">
|
|
|
|
|
<h4 class="mb-4">Want to Help Us Build It?</h4>
|
|
|
|
|
<p>Join the team that is both fixing how open source is funded and creating the tools that will accelerate
|
|
|
|
|
its creation for the benefit of all humanity.</p>
|
|
|
|
|
|
|
|
|
|
<p>Max Howell, our CEO, created brew. He’s a self‐taught developer, yet has written software used by tens of
|
|
|
|
|
millions of people. He doesn’t care if you know how to invert a binary tree. If you have a passion for
|
|
|
|
|
changing the world and have built some cool stuff then why not <a
|
|
|
|
|
style="color:#8EC7BF; text-decoration:none;" href="mailto:hello@tea.xyz"><strong>email us</strong></a>
|
|
|
|
|
and speak for what job you have in mind?</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-05-07 21:24:10 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<!-- Partners -->
|
2022-05-07 21:24:10 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="container partners mt-5 mb-5">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col mb-5">
|
|
|
|
|
<h3 style="text-align:center;" class="display-5">What’s a revolution without <span class="yellow">powerful
|
|
|
|
|
allies?</span></h3>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-12 col-sm-12 col-lg-12 my-auto">
|
|
|
|
|
<a href="https://www.binance.com/en/blog/ecosystem/binance-labs-leads-$8-million-seed-funding-round-for-tea-421499824684903608"
|
|
|
|
|
style="cursor:pointer;"><img id="binance" class="partner-img" src="Images/binance.svg"
|
|
|
|
|
alt="Proud of Binance"></a>
|
|
|
|
|
</div>
|
2022-05-07 21:24:10 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-05-07 21:24:10 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<!-- Community Links -->
|
|
|
|
|
<div class="row community-container pt-5 pb-5 mt-5 mb-5">
|
|
|
|
|
<div class="container p-4" id="community">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col">
|
|
|
|
|
<h3 style="text-align:center;" class="mb-5 display-5">Join the Community</h3>
|
|
|
|
|
</div>
|
2022-05-07 21:24:10 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="col-6 col-sm-6 col-lg">
|
|
|
|
|
<a href="https://discord.gg/KCZsXfJphn">
|
|
|
|
|
<div class="com-card mb-4">
|
|
|
|
|
<img src="Images/discord.svg" alt="" class="community-icon">
|
2022-04-25 19:41:24 +03:00
|
|
|
|
</div>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="col-6 col-sm-6 col-lg">
|
|
|
|
|
<a href="https://twitter.com/teaxyz_">
|
|
|
|
|
<div class="com-card mb-4">
|
|
|
|
|
<img src="Images/twitter.svg" alt="" class="community-icon">
|
2022-04-25 19:41:24 +03:00
|
|
|
|
</div>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="col-6 col-sm-6 col-lg">
|
|
|
|
|
<a href="https://github.com/teaxyz">
|
|
|
|
|
<div class="com-card mb-4">
|
|
|
|
|
<img src="Images/github.svg" alt="" class="community-icon">
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="col-6 col-sm-6 col-lg">
|
|
|
|
|
<a href="https://t.me/tea_xyz">
|
|
|
|
|
<div class="com-card mb-4">
|
|
|
|
|
<img src="Images/telegram.svg" alt="" class="community-icon">
|
2022-04-25 19:41:24 +03:00
|
|
|
|
</div>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="col-6 col-sm-6 col-lg align-self-center">
|
|
|
|
|
<a href="https://reddit.com/r/teaxyz">
|
|
|
|
|
<div class="com-card mb-4">
|
|
|
|
|
<img src="Images/reddit.svg" alt="" class="community-icon">
|
2022-04-25 19:41:24 +03:00
|
|
|
|
</div>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<div class="col-6 col-sm-6 col-lg align-self-center">
|
|
|
|
|
<a href="https://www.instagram.com/tea.xyz/">
|
|
|
|
|
<div class="com-card mb-4">
|
|
|
|
|
<img src="Images/instagram-iconAsset 1.svg" alt="" class="community-icon">
|
2022-05-07 21:24:10 +03:00
|
|
|
|
</div>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</a>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Footer -->
|
|
|
|
|
<div class="container footer mb-5 mt-5">
|
|
|
|
|
<div class="row mb-5 mt-5">
|
|
|
|
|
<div class="col-lg-4">
|
|
|
|
|
<img src="Images/tea-light.svg" alt="tea.xyz logo" style="width:100px;">
|
|
|
|
|
<p class="boilerplate mt-3 small">tea is revolutionizing open‐source by leveraging blockchain and web3 to
|
|
|
|
|
ensure fairness and equitability for the developers who power the internet. Now tell me, will you answer the
|
2022-05-19 02:25:08 +03:00
|
|
|
|
call? A shot’s been heard around the web, and the tea army wants you to join the cause.</p>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-lg-2 col-sm-6 col-6 mt-3">
|
|
|
|
|
<h6>Quick Links</h6>
|
|
|
|
|
<ul class="nav flex-column small">
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link ps-0" href="#">Home</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
2022-05-18 23:35:48 +03:00
|
|
|
|
<a class="nav-link ps-0" href="#why-tea">Why tea?</a>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link ps-0" href="#features">Features</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-lg-2 col-sm-6 col-6 mt-3 mb-3">
|
|
|
|
|
<h6>tea Links</h6>
|
|
|
|
|
<ul class="nav flex-column small">
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link ps-0" href="https://linktr.ee/teaxyz">Linktree</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link ps-0" href="mailto:hello@tea.xyz">Careers</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-lg-4 mt-3">
|
|
|
|
|
<h6 class=" mb-4">Get updates to your inbox</h6>
|
|
|
|
|
<form action="https://xyz.us14.list-manage.com/subscribe/post?u=5ecf36ba3d22ddd88d09708e6&id=4af8bd918a"
|
|
|
|
|
method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate"
|
|
|
|
|
target="_blank" novalidate autocomplete="off">
|
|
|
|
|
<input type="hidden" name="tags" value="7137169">
|
|
|
|
|
<input class="email-field mb-2" placeholder="Email" name="EMAIL" type="email" />
|
|
|
|
|
<input class="email-submit btn-primary mb-3" type="submit" value="subscribe" />
|
|
|
|
|
</form>
|
|
|
|
|
<p style="font-size: 16px; color: gray;">You can also share our <a href="https://linktr.ee/teaxyz">Linktree</a>.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-05-09 21:24:16 +03:00
|
|
|
|
<div class="row">
|
|
|
|
|
<p class="text-center" style="font-size:12px; color:#B7C7C8;">© 2022 tea inc.</p>
|
|
|
|
|
</div>
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- JavaScript Bundle with Popper -->
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
|
|
|
|
|
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
|
|
|
|
|
</script>
|
|
|
|
|
|
2022-05-18 02:40:06 +03:00
|
|
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
|
|
|
|
|
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
|
|
|
|
|
2022-05-09 20:28:09 +03:00
|
|
|
|
<script>
|
|
|
|
|
try {
|
|
|
|
|
fetch('https://app.tea.xyz/api/signups')
|
|
|
|
|
.then(res => res.json())
|
|
|
|
|
.then(res => {
|
2022-05-18 02:40:06 +03:00
|
|
|
|
if (!(localStorage['signup'] || '').match(/:::/)) {
|
|
|
|
|
$('#count').html(res.signups)
|
|
|
|
|
}
|
|
|
|
|
$('#count1').html(res.signups)
|
|
|
|
|
$('#count2').html(res.signups)
|
2022-05-09 20:28:09 +03:00
|
|
|
|
})
|
|
|
|
|
} catch (e) {
|
|
|
|
|
console.error(e)
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
$(window).scroll(function () {
|
|
|
|
|
$('nav').toggleClass('scrolled', $(this).scrollTop() > 100);
|
|
|
|
|
});
|
2022-05-18 02:40:06 +03:00
|
|
|
|
|
2022-05-18 02:23:30 +03:00
|
|
|
|
if (localStorage['signup'].match(/:::/)) {
|
|
|
|
|
const [username, serial] = localStorage.signup.split(':::');
|
|
|
|
|
$('.box-auth-true').show();
|
|
|
|
|
$('.box-auth-false').hide();
|
|
|
|
|
$('#auth-username').html(username);
|
|
|
|
|
$('#count').html(serial);
|
|
|
|
|
$('#count-sub-text').html('YOUR AUTHENTICATION NUMBER');
|
2022-05-18 03:00:25 +03:00
|
|
|
|
$('#communitea').html('Thanks for joining our communi'<span style="color:#54BAAB;">tea</span>');
|
2022-05-18 02:23:30 +03:00
|
|
|
|
$('#revolution-text').html(
|
|
|
|
|
'Now stay tuned! As an early authenticator, you’ll be entitled to a variety of exciting rewards, including minted NFT certificates.'
|
|
|
|
|
);
|
|
|
|
|
$('#auth-body-text').hide();
|
|
|
|
|
$('.rounded-pill').hide();
|
|
|
|
|
$('.auth-btn').html('Configure GitHub App');
|
|
|
|
|
}
|
2022-05-09 20:28:09 +03:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
</body>
|
2022-04-25 19:41:24 +03:00
|
|
|
|
|
2022-05-18 03:00:25 +03:00
|
|
|
|
</html>
|
2022-05-19 01:32:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Q3M5LVH76F"></script>
|
|
|
|
|
<script>
|
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
|
|
|
|
|
|
function gtag() {
|
|
|
|
|
dataLayer.push(arguments);
|
|
|
|
|
}
|
|
|
|
|
gtag('js', new Date());
|
|
|
|
|
|
|
|
|
|
gtag('config', 'G-Q3M5LVH76F');
|
|
|
|
|
</script>
|