2022-06-08 02:18:10 +03:00
{{ 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;
}
2023-02-02 21:48:01 +03:00
@media only screen and (max-width: 992px) {
2023-02-02 20:43:13 +03:00
.hero{
background-image: none !important;
}
}
2023-02-01 20:01:06 +03:00
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);
2023-02-03 02:13:59 +03:00
opacity: 0;
animation: fadeIn 1s ease-in-out forwards;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
2023-02-02 00:57:42 +03:00
}
.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-03 02:55:13 +03:00
@media only screen and (max-width: 768px) {
2023-02-03 21:08:59 +03:00
.mobile-ctas,
.mobile-term-loc{
2023-02-03 02:55:13 +03:00
visibility: visible;
}
2023-02-03 21:08:59 +03:00
.desktop-ctas,
.boilerplate,
.hero-description,
.hero-lead,
2023-02-04 01:02:00 +03:00
.desktop-term-loc,
.too-much{
2023-02-03 02:55:13 +03:00
display:none;
}
2023-02-03 21:08:59 +03:00
.hero-text,
.mobile-lead{
text-align:center;
2023-02-03 19:30:18 +03:00
}
2023-02-08 19:29:33 +03:00
.mbtn{
height:50px;
}
.hero-col{
padding-top: 16vw;
padding-bottom: 16vw;
}
2023-02-08 20:02:33 +03:00
.email{
height: 50px !important;
}
2023-02-03 02:55:13 +03:00
}
2023-02-02 00:57:42 +03:00
2023-02-03 02:55:13 +03:00
@media only screen and (min-width: 768px) {
2023-02-03 21:08:59 +03:00
.mobile-ctas,
.mobile-lead,
2023-02-04 00:10:39 +03:00
.mobile-term-loc,
2023-02-04 00:44:17 +03:00
.mobile-disclaimer,
.section-divider{
2023-02-03 02:55:13 +03:00
display:none;
}
2023-02-03 21:08:59 +03:00
.desktop-ctas,
.desktop-term-loc{
2023-02-03 02:55:13 +03:00
visibility: visible;
}
2023-02-08 19:29:33 +03:00
.bottom-cta{
display: block;
width:50%;
margin-left:auto;
margin-right:auto;
}
2023-02-03 02:55:13 +03:00
}
2023-02-02 00:57:42 +03:00
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-08 19:29:33 +03:00
< div class = "hero-col col-xl-6 col-lg-6 col-md-12 col-sm-12 col-12 my-auto" >
2023-02-03 21:08:59 +03:00
< h1 class = "display-1 hero-text" style = "z-index:3; position: relative;" > < span class = "inner-glow " > Invisible< / span > yet < span class = "callout white" > powerful< / span > < / h1 >
< p class = "lead hero-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 >
< p class = "lead mobile-lead mb-5" > tea/cli... from the creator of < a href = "https://brew.sh/" target = "_blank" > brew< / a > < / p >
2023-02-03 19:30:18 +03:00
< p class = "mb-5 hero-description" > 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-08 02:52:13 +03:00
< div class = "mobile-ctas" >
{{- partial "mobile-ctas.html" -}}
< / div >
2023-02-04 00:10:39 +03:00
{{- partial "desktop-ctas.html" -}}
2023-02-03 19:30:18 +03:00
2023-02-03 03:22:47 +03:00
< p class = "small dark-gray mb-5 boilerplate" > 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" >
2023-02-04 00:10:39 +03:00
< div class = "terminal-animation mb-3" >
2023-02-03 21:08:59 +03:00
{{- partial "hero-terminal-animation.html" -}}
< / div >
2023-01-21 02:05:17 +03:00
< / div >
< / div >
2022-09-15 20:05:47 +03:00
< / div >
2023-01-21 02:05:17 +03:00
< / section >
< style >
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
.traffic-light{
height: 16px;
width: 16px;
border: 1px solid gray;
border-radius: 100px;
display: inline-block;
margin-right: 5px;
}
2023-02-09 00:54:12 +03:00
#hero-terminal-content{
min-height: 0px !important;
max-height: none !important;
}
2023-01-26 19:57:22 +03:00
.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;
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
< / style >
2022-09-07 22:49:07 +03:00
2022-09-08 22:53:16 +03:00
<!-- Teal Impact Section -->
2023-02-04 00:44:17 +03:00
< div class = "section-divider teal-bg" >
< img src = "/Images/pixel-section-divider.svg" style = "pointer-events:none;" alt = "" >
< / div >
2023-02-02 22:07:24 +03:00
< section class = "teal-bg impact-section one-box" >
2023-02-02 02:24:25 +03:00
< div class = "container" >
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-02 21:48:01 +03:00
< h2 class = "black display-4 text-xl-center text-lg-center text-md-left text-sm-left text-left" style = "z-index:2;" > THIS ISN’ T 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" >
2023-02-04 01:02:00 +03:00
< p class = "text-xl-center text-lg-center text-md-left text-sm-left text-left black" > < span class = "too-much" > NO. OF < / span > REPOS< / p >
2023-02-02 21:48:01 +03:00
< h1 class = "display-1 text-xl-center text-lg-center text-md-left text-sm-left text-left black" > < span id = "stat-one" > 56,987< / span > < / h1 >
2023-02-01 20:01:06 +03:00
< / div >
< div class = "col" >
2023-02-04 01:02:00 +03:00
< p class = "text-xl-center text-lg-center text-md-left text-sm-left text-left black" > < span class = "too-much" > NO. OF < / span > MAINTAINERS< / p >
2023-02-02 21:48:01 +03:00
< h1 class = "display-1 text-xl-center text-lg-center text-md-left text-sm-left text-left black" > < span id = "stat-two" > 56,987< / span > < / h1 >
2023-02-01 20:01:06 +03:00
< / div >
< div class = "col" >
2023-02-02 21:48:01 +03:00
< p class = "text-xl-center text-lg-center text-md-left text-sm-left text-left black" > STAR COUNT< / p >
< a href = "https://github.com/teaxyz/cli/stargazers" target = "_blank" > < h1 class = "display-1 text-xl-center text-lg-center text-md-left text-sm-left text-left black" > < span class = "stargazers" > 56,987< / span > < / h1 > < / a >
2023-02-01 20:01:06 +03:00
< / div >
< div class = "col" >
2023-02-02 21:48:01 +03:00
< p class = "text-xl-center text-lg-center text-md-left text-sm-left text-left black" > CURRENT RELEASE< / p >
< a href = "https://github.com/teaxyz/cli/releases" target = "_blank" > < h1 class = "display-1 text-xl-center text-lg-center text-md-left text-sm-left text-left black" > < span class = "release" style = "text-transform:lowercase;" > 56,987< / span > < / h1 > < / a >
2023-02-01 20:01:06 +03:00
< / 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
2023-02-08 02:52:13 +03:00
<!-- Speed comparison section
2023-02-04 00:44:17 +03:00
< div class = "section-divider" >
< img src = "/Images/pixel-section-divider-teal.svg" style = "pointer-events:none;" alt = "" >
< / div >
2023-02-02 22:07:24 +03:00
< section class = "one-box" >
2023-01-24 17:00:22 +03:00
< div class = "container" >
2023-02-01 20:01:06 +03:00
< div class = "row" >
2023-02-02 18:55:19 +03:00
< div class = "col-xl-8 col-lg-8 col-md-12 col-sm-12 col-12" >
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
< 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
< 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 >
2023-02-08 02:52:13 +03:00
-->
2023-02-02 22:07:24 +03:00
< section >
2023-02-08 19:29:33 +03:00
< div class = "section-divider" >
< img src = "/Images/pixel-section-divider-teal.svg" style = "pointer-events:none;" alt = "" >
< / div >
2023-02-01 20:01:06 +03:00
< div class = "container" >
2023-02-02 22:07:24 +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-30 21:43:51 +03:00
< h2 class = "display-4" > tea magic< / h2 >
2023-02-07 18:41:01 +03:00
< p class = "lead" > tea offers a unique way of managing and utilizing open source tools with its installer that adds hooks to your shell. With tea's magic, you can effortlessly set up project environments, automatically install commands, and easily manage packages from the open source ecosystem. Using tea magic is optional, but it offers a convenient way to streamline your development workflow. The magic only works in the terminal, but it is easy to remove if desired, and tea can still be used without magic by simply prefixing commands with "tea".< / p >
< p > tea's magic enables you to utilize the entire open source ecosystem with just a few keystrokes. The magic sets up project environments using shell environment variables, and if a command is not found, it will install the command before running it. tea's magic is designed for developers, and it won't compromise your system's integrity as it doesn't install packages in your PATH. Additionally, tea's magic can be used in shell scripts by manually adding it with the one-liner "source < (tea --magic=bash)" and you can inject packages into an environment with the "+pkg" syntax. Whether you are looking for an easy way to manage your development environment, or seeking a way to streamline your scripts, tea's magic is the solution you've been looking for.< / p >
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-02-06 18:48:52 +03:00
< div class = "feature-terminal" id = "start-btn" style = "cursor:pointer;" >
2023-02-07 00:40:32 +03:00
< div class = "terminal-bar feature-bar black-bg flex-start p-1 ps-3" >
2023-01-24 19:36:25 +03:00
< div class = "traffic-light" > < / div >
< div class = "traffic-light" > < / div >
< div class = "traffic-light" > < / div >
< / div >
2023-01-28 00:20:46 +03:00
< div class = "terminal-content p-xl-5 p-lg-5 p-md-5 p-sm-2 p-3" >
2023-02-06 18:48:52 +03:00
< code id = "terminal-output-2" >
2023-02-09 00:54:12 +03:00
< div style = "margin-top: 15%;" >
{{- partial "play-btn.html" -}}
< / div >
2023-02-06 18:48:52 +03:00
< / code >
2023-01-24 19:36:25 +03:00
< / div >
< / div >
< / div >
< / div >
2023-02-04 03:25:03 +03:00
< script >
const commands2 = [
2023-02-06 18:48:52 +03:00
{ input: "$ tea bun create next ./app< br > ", output: `< span class = "dark-gray" > [package.json] Detected React - added "react-refresh"< br >
[package.json] Detected Next.js< br > < br > < / span > ` },
{ input: "", output: `< span class = "dark-gray" > $ bun install< / span > < br >
2023-02-07 00:40:32 +03:00
bun install v0.4.0 (a94bba63)< br >
🔍 Resolving [1/11]< br >
[99.00ms] git< br >
< span style = "color:green" > +< / span > @types/react@18.0.27< br >
< span style = "color:green" > +< / span > bun-framework-next@12.2.5< br >
< span style = "color:green" > +< / span > react-refresh@0.10.0< br >
< span style = "color:green" > +< / span > typescript@4.9.5< br >
< span style = "color:green" > +< / span > next@12.2.3< br >
< span style = "color:green" > +< / span > react@18.2.0< br >
< span style = "color:green" > +< / span > react-dom@18.2.0< br >
< span style = "color:green" > +< / span > react-is@18.2.0< br >
25 packages installed [704.00ms]< br >
[724.00ms] bun install< br > < br >
2023-02-06 18:48:52 +03:00
` },
2023-02-07 00:40:32 +03:00
{ input: "", output: `< span class = "dark-gray" > $ bun bun --use next< / span > < br > < br > ` },
{ input: "", output: `bun-framework-next v12.2.5< br > < br >
< span class = "ms-3" > 10.50 KB bun-framework-next/client.development.tsx [0]< / span > < br >
< span class = "ms-3" > 2.97 KB bun-framework-next/fallback.development.tsx [1]< / span > < br >
< span class = "ms-3" > 3.34 KB bun-framework-next/page-loader.ts [2]< br > < / span > < br > ` },
{ input: "", output: `next v12.2.3< br > < br >
0.16 KB next/app.js [3]< br >
1.04 KB next/dist/client/add-base-path.js [4]< br >
0.77 KB next/dist/client/add-locale.js [5]< br >
0.75 KB next/dist/client/detect-domain-locale.js [6]< br >
0.80 KB next/dist/client/has-base-path.js [7]< br >
4.85 KB next/dist/client/head-manager.js [8]< br >
1.12 KB next/dist/client/normalize-trailing-slash.js [9]< br >
4.50 KB next/dist/client/page-loader.js [10]< br >
1.01 KB next/dist/client/remove-base-path.js [11]< br >
0.74 KB next/dist/client/remove-locale.js [12]< br >
1.35 KB next/dist/client/request-idle-callback.js [13]< br >
8.49 KB next/dist/client/route-loader.js [14]< br >
4.78 KB next/dist/client/router.js [15]< br >
6.95 KB next/dist/client/script.js [16]< br >
1.22 KB next/dist/client/trusted-types.js [17]< br >
1.44 KB next/dist/client/with-router.js [18]< br >
12.15 KB next/dist/compiled/path-to-regexp/index.js [19]< br >
7.62 KB next/dist/compiled/react-is/cjs/react-is.development.js [20]< br >
0.24 KB next/dist/compiled/react-is/index.js [21]< br >
0.98 KB next/dist/lib/is-error.js [22]< br >
2.43 KB next/dist/pages/_app.js [23]< br >
0.65 KB next/dist/shared/lib/amp-context.js [24]< br >
0.42 KB next/dist/shared/lib/amp-mode.js [25]< br >
0.56 KB next/dist/shared/lib/escape-regexp.js [26]< br >
0.69 KB next/dist/shared/lib/head-manager-context.js [27]< br >
6.72 KB next/dist/shared/lib/head.js [28]< br >
0.87 KB next/dist/shared/lib/i18n/normalize-locale-path.js [29]< br >
0.71 KB next/dist/shared/lib/is-plain-object.js [30]< br >
0.71 KB next/dist/shared/lib/mitt.js [31]< br >
0.71 KB next/dist/shared/lib/page-path/denormalize-page-path.js [32]< br >
0.44 KB next/dist/shared/lib/page-path/normalize-path-sep.js [33]< br >
0.65 KB next/dist/shared/lib/router-context.js [34]< br >
51.00 KB next/dist/shared/lib/router/router.js [35]< br >
0.81 KB next/dist/shared/lib/router/utils/add-locale.js [36]< br >
0.63 KB next/dist/shared/lib/router/utils/add-path-prefix.js [37]< br >
12.70 KB next/dist/shared/lib/router/utils/add-path-suffix.js [38]< br >
1.27 KB next/dist/shared/lib/router/utils/format-next-pathname-info.js [39]< br >
3.58 KB next/dist/shared/lib/router/utils/format-url.js [40]< br >
0.57 KB next/dist/shared/lib/router/utils/get-asset-path-from-route.js [41]< br >
1.77 KB next/dist/shared/lib/router/utils/get-next-pathname-info.js [42]< br >
0.70 KB next/dist/shared/lib/router/utils/index.js [43]< br >
0.46 KB next/dist/shared/lib/router/utils/is-dynamic.js [44]< br >
0.91 KB next/dist/shared/lib/router/utils/parse-path.js [45]< br >
1.20 KB next/dist/shared/lib/router/utils/parse-relative-url.js [46]< br >
0.93 KB next/dist/shared/lib/router/utils/parse-url.js [47]< br >
0.63 KB next/dist/shared/lib/router/utils/path-has-prefix.js [48]< br >
1.62 KB next/dist/shared/lib/router/utils/path-match.js [49]< br >
6.75 KB next/dist/shared/lib/router/utils/prepare-destination.js [50]< br >
1.71 KB next/dist/shared/lib/router/utils/querystring.js [51]< br >
0.69 KB next/dist/shared/lib/router/utils/remove-path-prefix.js [52]< br >
0.47 KB next/dist/shared/lib/router/utils/remove-trailing-slash.js [53]< br >
3.85 KB next/dist/shared/lib/router/utils/resolve-rewrites.js [54]< br >
1.15 KB next/dist/shared/lib/router/utils/route-matcher.js [55]< br >
5.32 KB next/dist/shared/lib/router/utils/route-regex.js [56]< br >
5.42 KB next/dist/shared/lib/router/utils/sorted-routes.js [57]< br >
0.52 KB next/dist/shared/lib/runtime-config.js [58]< br >
3.21 KB next/dist/shared/lib/side-effect.js [59]< br >
5.53 KB next/dist/shared/lib/utils.js [60]< br >
0.16 KB next/head.js [61]< br > < br > < / span > ` },
{ input: "", output: `react v18.2.0< br > < br >
< span class = "ms-3" > 30.58 KB react/cjs/react-jsx-dev-runtime.development.js [62]< / span > < br >
< span class = "ms-3" > 64.50 KB react/cjs/react.development.js [63]< / span > < br >
< span class = "ms-3" > 0.17 KB react/index.js [64]< / span > < br >
< span class = "ms-3" > 0.20 KB react/jsx-dev-runtime.js [65]< br > < / span > < br > ` },
{ input: "", output: ` 1.13 MB JavaScript
73 modules
6 packages
41492 LOC parsed x2
119ms elapsed
Saved to ./node_modules.bun, ./node_modules.server.bun
[2.41s] bun create next
Come hang out in bun's Discord: https://bun.sh/discord
-----
A local git repository was created for you and dependencies were installed automatically.
Created next project successfully
# When dependencies change, run this to update node_modules.bun:
bun bun --use next
# To get started, run:
cd app
bun dev` },
];
2023-02-04 03:25:03 +03:00
let commandIndex2 = 0;
let command2 = commands2[commandIndex2];
let commandOutput2 = "";
function typeCommand2() {
if (commandIndex2 === commands2.length) {
return;
}
if (command2.input.length === 0) {
commandOutput2 += '\n' + command2.output + '\n';
document.querySelector("#terminal-output-2").innerHTML = commandOutput2;
commandIndex2++;
command2 = commands2[commandIndex2];
setTimeout(typeCommand2, 1000);
return;
}
commandOutput2 += command2.input[0];
command2.input = command2.input.slice(1);
2023-02-04 02:57:14 +03:00
document.querySelector("#terminal-output-2").innerHTML = commandOutput2;
2023-02-04 03:25:03 +03:00
setTimeout(typeCommand2, 100);
2023-02-04 02:57:14 +03:00
}
2023-02-04 03:25:03 +03:00
document.querySelector("#start-btn").addEventListener("click", typeCommand2);
< / script >
2023-02-04 02:57:14 +03:00
2023-02-02 22:07:24 +03:00
< div class = "divider" >
2023-02-02 00:57:42 +03:00
< hr >
< / div >
2023-01-26 23:49:04 +03:00
2023-01-24 22:52:37 +03:00
<!-- Second -->
2023-02-02 22:07:24 +03:00
< div class = "row one-box" >
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-02-07 18:41:01 +03:00
< p class = "lead" > Say goodbye to globally installed tools with different versions causing subtle bugs during development. With tea, you simply step into your project directory, type your command and voila, tea fetches and runs the specific versions that your project requires.< / p >
< p > tea is designed to be as clever as possible, it parses the required tool versions from different sources like GitHub Actions, .node-version files, YAML front matter in configuration files, and a # Dependencies section in your README.md. If there isn't a convention to specify the tool versions, you can add the YAML front matter to the tool's configuration file or add the dependencies to the # Dependencies section in your README.md. tea also provides SRCROOT and VERSION variables in addition to everything else required to make your dev environment function. To see the full environment for your project, simply run tea -En or env. If you encounter any issues or bugs, simply open a ticket. Try tea today and make project management a breeze!< / p >
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-02-07 02:17:31 +03:00
< div class = "feature-terminal" id = "start-button" style = "cursor:pointer;" >
2023-01-24 19:36:25 +03:00
< 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 >
2023-01-28 00:20:46 +03:00
< div class = "terminal-content p-xl-5 p-lg-5 p-md-5 p-sm-2 p-3" >
2023-02-07 02:17:31 +03:00
< code id = "terminal-output-3" >
2023-02-09 00:54:12 +03:00
< div style = "margin-top: 15%;" >
{{- partial "play-btn.html" -}}
< / div >
2023-02-07 02:17:31 +03:00
< / code >
2023-01-24 19:36:25 +03:00
< / div >
< / div >
< / div >
< / div >
2023-02-04 02:57:14 +03:00
< script >
const commands3 = [
2023-02-07 02:17:31 +03:00
{ input: "$ node --version< br > ", output: `v19.3.0< br > < br > ` },
{ input: "$ cat < < EOF > >my-project/README.md< br > ", output: `# Dependencies< br >
< table >
< thead >
< tr >
< th > Project< / th >
< th > Version< / th >
< / tr >
< / thead >
< tbody >
< tr >
< td > nodejs.org< / td >
< td > ^18.4< / td >
< / tr >
< / tbody >
< / table >
EOF
< br > < br > ` },
{ input: "$ cd my-project< br > ", output: `my-project< br > < br > ` },
{ input: "$ node --version< br > ", output: `v18.13.0` },
2023-02-04 02:57:14 +03:00
];
let commandIndex3 = 0;
let command3 = commands3[commandIndex3];
let commandOutput3 = "";
function typeCommand3() {
if (commandIndex3 === commands3.length) {
return;
}
if (command3.input.length === 0) {
commandOutput3 += '\n' + command3.output + '\n';
document.querySelector("#terminal-output-3").innerHTML = commandOutput3;
commandIndex3++;
command3 = commands3[commandIndex3];
setTimeout(typeCommand3, 1000);
return;
}
commandOutput3 += command3.input[0];
command3.input = command3.input.slice(1);
document.querySelector("#terminal-output-3").innerHTML = commandOutput3;
setTimeout(typeCommand3, 100);
}
2023-02-07 02:17:31 +03:00
document.querySelector("#start-button").addEventListener("click", typeCommand3);
2023-02-04 02:57:14 +03:00
< / script >
2023-02-02 22:07:24 +03:00
< div class = "divider" >
2023-02-02 00:57:42 +03:00
< hr >
< / div >
2023-01-25 00:39:11 +03:00
2023-01-24 22:52:37 +03:00
<!-- Third -->
2023-02-02 22:07:24 +03:00
< div class = "row one-box" >
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-02-07 18:41:01 +03:00
< p class = "lead" > With tea, there's no need to install packages beforehand, just type the commands you need and tea takes care of the rest. This includes fetching packages, constructing a virtual environment isolated from the rest of your system, and then running your commands. The focus is on using tools rather than installing them.< / p >
< p > tea supports the full https://semver.org specification, allowing you to construct virtual environments of specific tools and versions, encapsulated separately from the rest of your system. You can also specify the version of a tool needed in the tool's config, using YAML front matter in a comment or by adding an isolated tea namespace in a file like package.json. tea also has the option to parse your README for dependencies, further cementing the notion that using tea is completely optional for both you and your users.< / p >
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-02-07 02:17:31 +03:00
< div class = "feature-terminal" id = "start-animation-4" style = "cursor:pointer;" >
2023-01-24 19:36:25 +03:00
< 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 >
2023-01-28 00:20:46 +03:00
< div class = "terminal-content p-xl-5 p-lg-5 p-md-5 p-sm-2 p-3" >
2023-02-07 02:17:31 +03:00
< code id = "terminal-output-4" >
2023-02-09 00:54:12 +03:00
< div style = "margin-top: 15%;" >
{{- partial "play-btn.html" -}}
< / div >
2023-02-07 02:17:31 +03:00
< / code >
2023-01-24 19:36:25 +03:00
< / div >
< / div >
< / div >
< / div >
2023-02-04 02:57:14 +03:00
< script >
const commands4 = [
2023-02-08 01:04:59 +03:00
{ input: "tea https://github.com/teaxyz/demos/blob/main/hello-universe.sh< br > < br > ", output: `*** Interpreters ***< br > < br > `},
{ input: "", output: `TypeScript: Hello, World!< br > `},
{ input: "", output: `Go: Hello, World!< br > `},
{ input: "", output: `JavaScript: Hello, World!< br > `},
{ input: "", output: `Perl: Hello, World!< br > `},
{ input: "", output: `Python: Hello, World!< br > `},
{ input: "", output: `Ruby: Hello World!< br > `},
{ input: "", output: `Lua: Hello, World!< br > < br > `},
{ input: "", output: `*** Compilers ***< br > < br > `},
{ input: "", output: `C: Hello, World!< br > `},
{ input: "", output: `Rust: Hello, World!< br > `},
2023-02-04 02:57:14 +03:00
];
let commandIndex4 = 0;
let command4 = commands4[commandIndex4];
let commandOutput4 = "";
function typeCommand4() {
if (commandIndex4 === commands4.length) {
return;
}
if (command4.input.length === 0) {
commandOutput4 += '\n' + command4.output + '\n';
document.querySelector("#terminal-output-4").innerHTML = commandOutput4;
commandIndex4++;
command4 = commands4[commandIndex4];
setTimeout(typeCommand4, 1000);
return;
}
commandOutput4 += command4.input[0];
command4.input = command4.input.slice(1);
document.querySelector("#terminal-output-4").innerHTML = commandOutput4;
setTimeout(typeCommand4, 100);
}
2023-02-07 02:17:31 +03:00
document.querySelector("#start-animation-4").addEventListener("click", function() {
typeCommand4();
});
2023-02-04 02:57:14 +03:00
< / script >
2023-01-24 19:36:25 +03:00
< / div >
< / section >
2023-02-02 20:43:13 +03:00
< hr >
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;
}
2023-01-24 19:36:25 +03:00
.feature-row{
border: 2px solid gray;
2023-02-07 00:40:32 +03:00
position: fixed;
width: 100%;
2023-01-24 19:36:25 +03:00
}
2023-02-09 00:54:12 +03:00
@media only screen and (max-width: 768px) {
.feature-terminal{
width: 100%;
min-height: 250px;
border: 2px solid gray;
background-color: #1a1a1a;
border-radius: 10px;
box-shadow: 0px 10px 18px #121212;
animation: float 3s ease-in-out infinite;
}
.terminal-content{
height: 250px;
}
2023-01-24 22:52:37 +03:00
}
2023-02-09 00:54:12 +03:00
@media only screen and (min-width: 768px) {
.terminal-content{
overflow-y: auto;
min-height:400px;
max-height: 400px;
}
.feature-terminal{
width: 100%;
min-height: 400px;
border: 2px solid gray;
background-color: #1a1a1a;
border-radius: 10px;
box-shadow: 0px 10px 18px #121212;
animation: float 3s ease-in-out infinite;
}
2023-02-07 00:40:32 +03:00
}
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-12 21:10:10 +03:00
2023-01-31 23:52:03 +03:00
<!-- Getting Started -->
< section class = "gs-section" >
< div class = "container" >
2023-02-02 22:07:24 +03:00
< div class = "row one-box" >
2023-01-31 23:52:03 +03:00
< 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 tea’ s 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" >
2023-02-08 20:35:38 +03:00
< div class = "terminal-content-gs" >
2023-01-31 23:52:03 +03:00
< 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;
2023-02-02 02:24:25 +03:00
height: 35px;
2023-01-31 23:52:03 +03:00
background-color: #949494;
2023-02-09 00:54:12 +03:00
display: block;
margin-left: auto;
margin-right: auto;
2023-01-31 23:52:03 +03:00
}
.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" >
2023-02-08 20:35:38 +03:00
< div class = "terminal-content-gs" >
2023-01-31 23:52:03 +03:00
< 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" >
2023-02-08 20:35:38 +03:00
< div class = "terminal-content-gs" >
2023-01-31 23:52:03 +03:00
< 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" >
2023-02-08 20:35:38 +03:00
< div class = "terminal-content-gs" >
2023-01-31 23:52:03 +03:00
< 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 >
2023-02-02 22:07:24 +03:00
< hr >
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 >
2022-09-22 21:25:34 +03:00
< 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‐ generation, cross‐ platform package manager.< / p >
< p > In true open‐ source fashion, we' 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' 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;" >
2022-10-25 06:22:59 +03:00
< p class = "stat-head" > NUMBER OF REPOS< / p >
< p class = "stat-number teal" id = "stat-one" > < / p >
2022-12-16 03:58:06 +03:00
< p class = "gray stat-small-text" > Number of rated repos owned by tea‐ authenticated developers.< / p >
2022-09-14 20:04:15 +03:00
< / div >
2022-09-29 21:35:17 +03:00
< div class = "gen-art-mobile" id = "m-gen-art-3" > < / div >
< div class = "gen-art-mobile" id = "m-gen-art-4" > < / div >
2022-09-29 03:27:09 +03:00
< 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 >
2022-10-25 06:22:59 +03:00
< p class = "stat-number teal" > < span id = "count2" > < / span > < / p >
2022-12-16 03:58:06 +03:00
< 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 >
2022-09-29 21:42:43 +03:00
< div class = "gen-art-mobile" id = "m-gen-art-5" > < / div >
< div class = "gen-art-mobile" id = "m-gen-art-6" > < / div >
2022-09-29 03:27:09 +03:00
< 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;" >
2022-12-14 21:51:55 +03:00
< p class = "stat-head" > TEA MAINTAINERS< / p >
2022-10-25 06:22:59 +03:00
< p class = "stat-number teal" id = "stat-two" > < / p >
2022-12-16 03:58:06 +03:00
< 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 >
2022-09-29 22:00:56 +03:00
< div class = "gen-art-mobile" id = "m-gen-art-7" > < / div >
< div class = "gen-art-mobile" id = "m-gen-art-8" > < / div >
2022-09-29 03:27:09 +03:00
< 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 >
2023-01-12 21:12:24 +03:00
< div class = "full-width-cta-container" >
2023-01-26 20:21:06 +03:00
{{- partial "full-width-cta-split.html" . -}}
2023-01-12 21:12:24 +03:00
< / 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" > DON’ T JUST TAKE OUR WORD FOR IT… TWITTER’ S 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 >
2023-02-08 19:29:33 +03:00
< p class = "lead text-center mb-5" > Introducing tea’ s +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 class = "bottom-cta" > {{- partial "desktop-ctas.html" -}}< / div >
2023-01-25 00:53:02 +03:00
< / div >
< / div >
< / div >
< / section >
2023-02-02 22:07:24 +03:00
< hr >
2023-01-25 00:53:02 +03:00
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" >
2023-01-27 22:32:20 +03:00
< 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 >
< 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 >
2022-06-16 17:14:27 +03:00
{{ end }}