···16161717export default function LoginForm(props: {
1818 noEmail?: boolean;
1919+ publication?: boolean;
1920 redirectRoute?: string;
2021 action?: ActionAfterSignIn;
2122}) {
···121122 <div className="flex flex-col">
122123 <h4 className="text-primary">Log In or Sign Up</h4>
123124 <div className=" text-tertiary text-sm">
124124- Save your Leaflets and access them on multiple devices!
125125+ {props.publication
126126+ ? "Log in to Bluesky to subscribe this publication!"
127127+ : "Save your Leaflets and access them on multiple devices!"}
125128 </div>
126129 </div>
127130