From db928c3814a7dec89023c2e8bc073e44534dcbab Mon Sep 17 00:00:00 2001 From: neonwatty Date: Sun, 10 May 2026 07:00:00 -0700 Subject: [PATCH] Replace footer tech tags with trust links --- src/components/footer.tsx | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/src/components/footer.tsx b/src/components/footer.tsx index 2e67e82..3337890 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -13,6 +13,13 @@ const repoLinks = [ { label: "Product Hunt", href: PRODUCT_HUNT_URL }, ]; +const trustLinks = [ + { label: "Open source", href: GITHUB_REPO_URL }, + { label: "MIT licensed", href: `${GITHUB_REPO_URL}/blob/main/LICENSE` }, + { label: "Built by mean-weasel", href: GITHUB_ORG_URL }, + { label: "Powered by Cloudflare Workers", href: "https://workers.cloudflare.com/" }, +]; + export function Footer() { return (