Add Kickstarter reward tracking button to landing page navbar

This commit is contained in:
Adam Shiervani 2025-03-11 19:36:23 +01:00
parent 873e19b362
commit a4c5380501

View File

@ -3,8 +3,9 @@ import clsx from "clsx";
import ExtLink from "~/components/ExtLink";
import type { ReactNode } from "react";
import React from "react";
import { Button, LinkButton } from "~/components/Button";
import { LinkButton } from "~/components/Button";
import { GitHubIcon } from "../Icons";
import KickstarterIcon from "~/assets/kickstarter-icon.svg";
type LinkProps = {
to: string;
@ -85,6 +86,16 @@ export default function LandingNavbar({ githubStars }: { githubStars: number | n
to="https://app.jetkvm.com"
text="Cloud Dashboard"
/>
<div className="h-3/4 w-px bg-slate-800/20" />
<LinkButton
size="SM"
theme="primary"
LeadingIcon={({ className }) => (
<img className={className} src={KickstarterIcon} />
)}
to="https://shiphelp.jetkvm.com"
text="Track Kickstarter Reward"
/>
</div>
</div>
</div>