feat: add Trendshift badge to README and landing page footer

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jiayuan Zhang
2026-04-10 20:16:22 +08:00
parent 9b62485a86
commit a0cf8ac6be
3 changed files with 23 additions and 7 deletions

View File

@@ -20,6 +20,7 @@ Turn coding agents into real teammates — assign tasks, track progress, compoun
[![CI](https://github.com/multica-ai/multica/actions/workflows/ci.yml/badge.svg)](https://github.com/multica-ai/multica/actions/workflows/ci.yml)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![GitHub stars](https://img.shields.io/github/stars/multica-ai/multica?style=flat)](https://github.com/multica-ai/multica/stargazers)
[![multica-ai/multica | Trendshift](https://trendshift.io/api/badge/repositories/24695)](https://trendshift.io/repositories/24695)
[Website](https://multica.ai) · [Cloud](https://multica.ai/app) · [X](https://x.com/multica_hq) · [Self-Hosting](SELF_HOSTING.md) · [Contributing](CONTRIBUTING.md)

View File

@@ -20,6 +20,7 @@
[![CI](https://github.com/multica-ai/multica/actions/workflows/ci.yml/badge.svg)](https://github.com/multica-ai/multica/actions/workflows/ci.yml)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![GitHub stars](https://img.shields.io/github/stars/multica-ai/multica?style=flat)](https://github.com/multica-ai/multica/stargazers)
[![multica-ai/multica | Trendshift](https://trendshift.io/api/badge/repositories/24695)](https://trendshift.io/repositories/24695)
[官网](https://multica.ai) · [云服务](https://multica.ai/app) · [X](https://x.com/multica_hq) · [自部署指南](SELF_HOSTING.md) · [参与贡献](CONTRIBUTING.md)

View File

@@ -83,14 +83,28 @@ export function LandingFooter() {
</div>
</div>
{/* Bottom: copyright + language switcher */}
{/* Bottom: copyright + badge + language switcher */}
<div className="flex items-center justify-between py-6">
<p className="text-[13px] text-white/36">
{t.footer.copyright.replace(
"{year}",
String(new Date().getFullYear()),
)}
</p>
<div className="flex items-center gap-4">
<p className="text-[13px] text-white/36">
{t.footer.copyright.replace(
"{year}",
String(new Date().getFullYear()),
)}
</p>
<Link
href="https://trendshift.io/repositories/24695"
target="_blank"
rel="noreferrer"
>
{/* eslint-disable-next-line @next/next/no-img-element */}
<img
src="https://trendshift.io/api/badge/repositories/24695"
alt="multica-ai/multica | Trendshift"
className="h-[28px] w-auto"
/>
</Link>
</div>
<div className="flex items-center">
{locales.map((l, i) => (
<button