diff --git a/components/DonateBanner.tsx b/components/DonateBanner.tsx index dbab92961b..db3835c153 100644 --- a/components/DonateBanner.tsx +++ b/components/DonateBanner.tsx @@ -22,7 +22,7 @@ return null; You're using the free self-hosted version. Support the - ongoing development. + ongoing development by making a donation.

diff --git a/pages/index.tsx b/pages/index.tsx index 252fa6d76d..3ce303687a 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -4,6 +4,7 @@ import prisma from '../lib/prisma'; import Shell from '../components/Shell'; import { signIn, useSession, getSession } from 'next-auth/client'; import { ClockIcon, CheckIcon, InformationCircleIcon } from '@heroicons/react/outline'; +import DonateBanner from '../components/DonateBanner'; function classNames(...classes) { return classes.filter(Boolean).join(' ')