chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:32:57 +08:00
commit cd420f9332
4811 changed files with 884702 additions and 0 deletions
@@ -0,0 +1,24 @@
import productHuntLogo from "../assets/images/producthunt.png";
import { ArrowRightIcon } from "@heroicons/react/20/solid";
import { Paragraph } from "./primitives/Paragraph";
import { LinkButton } from "./primitives/Buttons";
export function ProductHuntBanner() {
return (
<div className="flex h-8 items-center justify-center gap-2 bg-[#ff6154]">
<Paragraph variant="small" className="text-white">
We're live on{" "}
</Paragraph>
<img src={productHuntLogo} alt="Product Hunt" className="h-6 w-[122px]" />
<ArrowRightIcon className="h-4 w-4 text-white" />
<LinkButton
to="https://www.producthunt.com/posts/trigger-dev"
target="_blank"
className="text-white! underline underline-offset-2 transition hover:decoration-text-bright hover:decoration-2"
variant="tertiary/small"
>
Vote for us today only!
</LinkButton>
</div>
);
}