diff --git a/components/Footer.tsx b/components/Footer.tsx index b03f1fe..8988db3 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -5,6 +5,8 @@ type Props = { [key: string]: any }; +const vercelSponsor = process.env["NEXT_PUBLIC_VERCEL_SPONSOR"] === "true"; + const Footer: FC = (props) => ( = (props) => ( Licensed under AGPLv3 - · - - ▲ Powered by Vercel - + {vercelSponsor && ( + <> + · + + ▲ Powered by Vercel + + + )} );