0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Tweaked the link for sign in

This commit is contained in:
James Morris 2022-07-07 12:03:46 +02:00
parent 88d2fc4bd2
commit e582f8723a

View file

@ -2,7 +2,7 @@ function NotSignedInBox() {
return (
<section className="text-center mb-1 bg-neutral-50 rounded-lg pt-12 pb-10 px-8">
<h1 className="text-center text-3xl font-sans font-bold mb-6 tracking-tight">Want to join the discussion?</h1>
<a className="bg-black text-white font-sans py-3 px-4 mb-6 rounded inline-block" href="#/portal">Sign in to comment</a>
<a className="bg-black text-white font-sans py-3 px-4 mb-6 rounded inline-block" href="#/portal/signin">Sign in to comment</a>
</section>
);
}