2022-09-29 02:22:29 +03:00
< hr >
2022-10-18 19:14:37 +03:00
< div id = "myData" > < / div >
2022-09-28 19:47:45 +03:00
< section class = "footer" id = "community" >
2022-09-27 01:21:22 +03:00
< div class = "container" >
2022-12-29 18:32:34 +03:00
< div class = "row footer-top one-box-down" >
2022-09-14 01:59:12 +03:00
< div class = "col-lg-8 footer-content" >
2023-01-19 20:05:10 +03:00
< h4 > the next-generation, cross‐ platform package manager< / h4 >
2023-01-25 00:53:02 +03:00
< p class = "lead" > tea.cli is a delightful package manager that gets out of your way and sets you up for a joyful development process. < a class = "teal" href = "#" > You can install it today< / a > . <!-- Our web3 protocol will create an OSS ecosystem that is safer for all users, and fair for all maintainers. Read our <a class="teal" href="#">white paper</a> here. --> < / p >
2022-09-22 22:05:58 +03:00
< img class = "footer-grid" src = "/Images/footer-grid-element.svg" alt = "tea.grid" >
2022-09-29 22:23:41 +03:00
< img class = "mobile-grid-element" src = "/Images/mobile-grid-element-3-rows.svg" alt = "grid" >
2022-09-14 01:59:12 +03:00
< / div >
< div class = "col-lg-4" >
< div class = "card social-box" style = "width: 100%; float:right;" >
< ul class = "list-group list-group-flush" >
2022-12-07 23:56:06 +03:00
< a class = "list-group-item" role = "button" href = "https://twitter.com/teaxyz" > < i class = "icon-twitter social-icon" > < / i > Twitter< / a >
2022-10-13 01:23:30 +03:00
< a class = "list-group-item" role = "button" href = "https://discord.gg/KCZsXfJphn" > < i class = "icon-discord social-icon" > < / i > Discord< / a >
2023-01-11 19:56:55 +03:00
< a class = "list-group-item" role = "button" href = "https://github.com/teaxyz/cli" > < i class = "icon-github social-icon" > < / i > GitHub < span style = "font-size:16px;" > (☆ < span class = "stargazers" > < / span > , < span class = "release" > < / span > )< / span > < / a >
2022-10-13 01:23:30 +03:00
< a class = "list-group-item" role = "button" href = "https://t.me/tea_xyz" > < i class = "icon-telegram social-icon" > < / i > Telegram< / a >
2022-09-14 01:59:12 +03:00
< / ul >
< / div >
2022-09-13 18:51:23 +03:00
< / div >
< / div >
2022-09-14 01:59:12 +03:00
< div class = "row mb-4" >
2022-10-26 22:16:09 +03:00
< h4 class = "mb-4" > sign up for tea'mails< / h4 >
2022-09-14 01:59:12 +03:00
< div class = "col" >
2022-10-26 22:16:09 +03:00
{{- partial "klaviyo-form.html" -}}
2022-09-13 19:45:41 +03:00
< / div >
2022-09-14 01:59:12 +03:00
< / div >
< div class = "row" >
< div class = "col-lg-6" >
2023-01-10 18:16:23 +03:00
< p class = "small" > ©< span id = "copyYear" > < / span > tea inc. You can also share our < a href = "https://linktr.ee/teaxyz" class = "teal" > Linktree< / a > .< / p >
2022-09-14 01:59:12 +03:00
< / div >
< div class = "col-lg-6" >
{{- partial "footer-nav.html" . -}}
2022-09-13 18:51:23 +03:00
< / div >
2022-09-14 01:59:12 +03:00
< / div >
2022-09-13 18:31:25 +03:00
< / div >
< / section >
2023-01-10 18:16:23 +03:00
< script >
const copyrightDate = new Date().getFullYear();
document.getElementById('copyYear').innerHTML = copyrightDate;
< / script >
2022-09-13 18:31:25 +03:00
2022-09-07 19:57:17 +03:00
<!-- JavaScript Bundle with Popper -->
2022-06-08 02:18:10 +03:00
< 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 >
< script src = "https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous">< / script >
< script >
$(window).scroll(function () {
$('nav').toggleClass('scrolled', $(this).scrollTop() > 100);
});
if (localStorage['signup'].match(/:::/)) {
2022-08-15 21:27:59 +03:00
const [username, serial_] = localStorage.signup.split(':::');
const serial = (+serial_).toLocaleString()
2022-06-08 02:18:10 +03:00
$('.box-auth-true').show();
$('.box-auth-false').hide();
$('#auth-username').html(username);
$('#count').html(`${serial} / < span id = 'count3' > < / span > `);
$('#count-sub-text').html('YOUR AUTHENTICATION NUMBER');
$('#communitea').html('Thanks for joining our communi' < span style = "color:#54BAAB;" > tea< / span > ');
$('#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-07-05 23:04:52 +03:00
$('.auth-btn').attr('href', 'https://github.com/apps/tea-xyz')
2022-06-08 02:18:10 +03:00
}
< / script >
2022-06-09 17:54:42 +03:00
< script type = "text/javascript" >
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "c9ohlhyxzf");
< / script >
2022-06-08 02:18:10 +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 >
2022-07-01 22:41:02 +03:00
< script >
2022-07-05 23:05:33 +03:00
const textList = [
2022-07-05 23:18:07 +03:00
"game‐ dev",
2022-07-05 23:05:33 +03:00
"AI",
"automation",
"data",
"ML",
2022-08-03 22:25:44 +03:00
"web",
2022-07-05 23:05:33 +03:00
"devops",
"creating",
"everything",
"< i > you< i > "
];
2022-09-15 05:03:49 +03:00
const cycle = document.querySelector(".cycle","#cycle");
2022-07-05 23:05:33 +03:00
let i = 0;
const cycleText = () => {
cycle.innerHTML = textList[i];
i = ++i % textList.length;
2022-07-01 22:41:02 +03:00
};
2022-07-05 23:05:33 +03:00
cycleText();
2022-09-23 00:02:44 +03:00
setInterval(cycleText, 2400);
2022-07-05 23:18:07 +03:00
2022-07-01 22:41:02 +03:00
< / script >
2022-08-18 17:27:30 +03:00
< script >
rdt('track', 'SignUp');
2022-08-18 17:33:19 +03:00
rdt('track', 'ViewContent');
2022-08-18 17:27:30 +03:00
< / script >
2022-09-23 20:45:11 +03:00
2022-10-18 19:14:37 +03:00
< script >
const url = 'https://tea.breezy.hr/json?verbose=true';
fetch(url)
.then(res => res.json())
.then((out) => {
2022-10-18 19:39:53 +03:00
//Debugging + Reference
2022-10-18 19:14:37 +03:00
console.log(out);
2022-10-18 19:39:20 +03:00
//Job Description One
2022-10-18 19:14:37 +03:00
document.getElementById('typeOne').innerHTML = out[0].type.name;
document.getElementById('deptOne').innerHTML = out[0].department;
2022-10-18 19:39:20 +03:00
out[0].location.is_remote === true ? document.getElementById('locOne').innerHTML = 'Remote' : document.getElementById('locOne').innerHTML = out[0].location.name;
2022-10-18 19:14:37 +03:00
document.getElementById('jobOne').innerHTML = out[0].name;
document.getElementById('descOne').innerHTML = out[0].description;
document.getElementById('linkOne').href = out[0].url;
2022-10-18 19:39:20 +03:00
document.getElementById('typeTwo').innerHTML = out[1].type.name;
document.getElementById('deptTwo').innerHTML = out[1].department;
document.getElementById('jobTwo').innerHTML = out[1].name;
document.getElementById('descTwo').innerHTML = out[1].description;
2022-10-27 04:28:55 +03:00
out[1].location.is_remote === true ? document.getElementById('locTwo').innerHTML = 'Remote' : document.getElementById('locTwo').innerHTML = out[1].location.name;
document.getElementById('linkTwo').href = out[1].url;
document.getElementById('jobThree').innerHTML = out[2].name;
document.getElementById('typeThree').innerHTML = out[2].type.name;
document.getElementById('deptThree').innerHTML = out[2].department;
out[2].location.is_remote === true ? document.getElementById('locThree').innerHTML = 'Remote' : document.getElementById('locThree').innerHTML = out[2].location.name;
document.getElementById('descThree').innerHTML = out[2].description;
document.getElementById('linkThree').href = out[2].url;
2022-10-18 19:14:37 +03:00
})
.catch(err => { throw err });
< / script >
2022-10-20 22:33:43 +03:00
< script >
2022-11-03 03:53:17 +03:00
2022-10-20 22:33:43 +03:00
const toastTrigger = document.getElementById('liveToastBtn')
const toastLiveExample = document.getElementById('liveToast')
if (toastTrigger) {
toastTrigger.addEventListener('click', () => {
const toast = new bootstrap.Toast(toastLiveExample)
toast.show()
})
}
< / script >
2022-12-29 19:34:36 +03:00
< script >
2023-01-27 21:01:40 +03:00
$(document).ready(function() {
var repository = "teaxyz/cli";
var url = "https://api.github.com/repos/" + repository;
$.get(url, function(data) {
var stargazers = numeral(data.stargazers_count).format("0.0a");
$(".stargazers").html(stargazers).hide().fadeIn(400);
});
});
2022-12-29 19:34:36 +03:00
< / script >
2023-01-11 18:25:30 +03:00
< script >
$(document).ready(function() {
var repository = "teaxyz/cli";
var url = "https://api.github.com/repos/"+ repository +"/releases/latest";
$.get(url, function(data) {
var release = data.tag_name;
$(".release").html(release);
});
});
< / script >