@@ -17,7 +17,6 @@ import { Paragraph } from "~/components/primitives/Paragraph";
1717import { authenticator } from "~/services/auth.server" ;
1818import { commitSession , getUserSession } from "~/services/sessionStorage.server" ;
1919import magicLinkIcon from "./login.magic.svg" ;
20-
2120import type { LoaderType as RootLoader } from "~/root" ;
2221import { appEnvTitleTag } from "~/utils" ;
2322import { TextLink } from "~/components/primitives/TextLink" ;
@@ -116,7 +115,10 @@ export default function LoginMagicLinkPage() {
116115 </ >
117116 ) : (
118117 < >
119- < FormTitle divide = { false } title = "Log in to Trigger.dev" />
118+ < FormTitle divide = { false } title = "Welcome to Trigger.dev" className = "mb-2 pb-0" />
119+ < Paragraph variant = "small" className = "mb-4 text-center" >
120+ Create an account or login using your email
121+ </ Paragraph >
120122 < Fieldset className = "flex w-full flex-col items-center gap-y-2" >
121123 < InputGroup >
122124 < Label > Your email address</ Label >
@@ -167,6 +169,22 @@ export default function LoginMagicLinkPage() {
167169 </ LinkButton >
168170 </ >
169171 ) }
172+ < div className = "mt-8 rounded border border-border px-6 py-4" >
173+ < Paragraph variant = "small" className = "mb-2 text-center" >
174+ Having login issues?
175+ </ Paragraph >
176+ < Paragraph variant = "extra-small" className = "text-center" >
177+ Ensure the Magic Link email isn't in your spam folder. If the problem persists,{ " " }
178+ < TextLink href = "mailto:help@trigger.dev" target = "_blank" >
179+ drop us an email
180+ </ TextLink > { " " }
181+ or let us know on{ " " }
182+ < TextLink href = "https://trigger.dev/discord" target = "_blank" >
183+ Discord
184+ </ TextLink >
185+ .
186+ </ Paragraph >
187+ </ div >
170188 </ div >
171189 </ Form >
172190 </ MainCenteredContainer >
0 commit comments