Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
ce5df01
docs(site): redesign homepage around user journeys
vmaerten Aug 30, 2026
e209766
docs(site): make homepage responsive and accessible
vmaerten Aug 30, 2026
c8e8143
refactor(site): render the homepage example with shiki
vmaerten Aug 30, 2026
a0b39ca
fix(site): align the homepage panels and cards without fixed heights
vmaerten Aug 30, 2026
9e9c5dc
fix(site): track the install copy button with data-umami-event
vmaerten Aug 30, 2026
d23d646
style(site): format the homepage front matter with prettier
vmaerten Aug 30, 2026
c72eebf
fix(site): clean up the copy timer and handle a refused clipboard
vmaerten Aug 30, 2026
b1bd8ff
fix(site): hide the decorative slashes in the section eyebrows from s…
vmaerten Aug 30, 2026
bffed9d
style(site): line the homepage breakpoints up with the VitePress scale
vmaerten Aug 30, 2026
13fcb2c
docs(site): offer platform-specific install commands
vmaerten Aug 30, 2026
24ff92f
feat(site): fetch the GitHub star count at build time
vmaerten Aug 30, 2026
93958b0
feat(site): show the GitHub star count in the hero actions
vmaerten Aug 30, 2026
d2fa4cf
fix(site): move the star count out of the hero button row
vmaerten Aug 30, 2026
e811ff1
docs(site): add a Remote Taskfiles feature card
vmaerten Aug 30, 2026
3ed8606
docs(site): link the Remote Taskfiles feature
vmaerten Aug 30, 2026
3fee488
docs(site): move social proof below homepage features
vmaerten Aug 30, 2026
f072649
docs(site): send the homepage to the installation page
vmaerten Sep 3, 2026
0486cbf
style(site): make the homepage install call to action smaller
vmaerten Sep 3, 2026
b0008cd
style(site): tighten the gap above the install button
vmaerten Sep 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 61 additions & 35 deletions website/.vitepress/components/AdoptersCarousel.vue
Original file line number Diff line number Diff line change
@@ -1,25 +1,34 @@
<script setup lang="ts">
import { adopters } from '../adopters';
import { data as stars } from '../githubStars.data';

const loop = [...adopters, ...adopters];
</script>

<template>
<section class="adopters-carousel" aria-labelledby="adopters-heading">
<h2 id="adopters-heading" class="label">
<span class="slashes">//</span>
Trusted by open source projects
</h2>
<p class="subline">
Adopted by <strong>Docker</strong>, <strong>Vercel</strong>,
<strong>HashiCorp</strong>, <strong>Microsoft</strong>,
<strong>Google Cloud</strong>, <strong>AWS</strong>,
<strong>Anthropic</strong> and more.
<a class="see-all" href="/adopters">
See all adopters
<span class="see-all-arrow" aria-hidden="true">&rarr;</span>
</a>
</p>
<div class="heading">
<h2 id="adopters-heading" class="label">
<span class="slashes" aria-hidden="true">//</span>
Trusted across open source
</h2>
<div class="heading-links">
<a
class="github-stars"
href="https://github.com/go-task/task"
target="_blank"
rel="noreferrer"
data-umami-event="home-adopters-github"
>
<span class="vpi-social-github" aria-hidden="true"></span>
{{ stars.label }} stars
</a>
<a class="see-all" href="/adopters">
See all adopters
<span class="see-all-arrow" aria-hidden="true">&rarr;</span>
</a>
</div>
</div>

<div class="viewport">
<div class="track">
Expand Down Expand Up @@ -51,50 +60,60 @@ const loop = [...adopters, ...adopters];

<style scoped>
.adopters-carousel {
max-width: 1248px;
margin: 5rem auto 2rem;
max-width: 1152px;
margin: 3rem auto 0;
padding: 0 24px;
}

.heading {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 1rem;
margin: 0 0 1rem;
}

.heading-links {
display: flex;
align-items: center;
gap: 1rem;
}

.label {
font-family: var(--vp-font-family-mono);
font-size: 0.8rem;
font-weight: 500;
letter-spacing: 0.04em;
color: var(--vp-c-text-2);
text-transform: uppercase;
text-align: center;
margin: 0 0 0.75rem;
margin: 0;
}

.slashes {
color: var(--vp-c-brand-1);
margin-right: 0.4em;
}

.subline {
text-align: center;
font-size: 0.95rem;
color: var(--vp-c-text-2);
max-width: 640px;
margin: 0 auto 2rem;
line-height: 1.5;
}

.subline strong {
color: var(--vp-c-text-1);
font-weight: 600;
}

.github-stars,
.see-all {
display: inline-block;
margin-left: 0.4em;
display: inline-flex;
align-items: center;
gap: 0.35rem;
color: var(--vp-c-brand-1);
font-size: 0.85rem;
font-weight: 500;
white-space: nowrap;
text-decoration: none !important;
}

.github-stars {
color: var(--vp-c-text-2);
}

.github-stars:hover {
color: var(--vp-c-brand-1);
}

.see-all:hover {
text-decoration: underline !important;
}
Expand Down Expand Up @@ -209,7 +228,14 @@ const loop = [...adopters, ...adopters];

@media (max-width: 640px) {
.adopters-carousel {
margin-top: 3.5rem;
margin-top: 2.5rem;
padding: 0 16px;
}

.heading {
align-items: flex-start;
flex-direction: column;
gap: 0.65rem;
}
}

Expand Down
Loading