-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50db7f0
commit e5bba30
Showing
2 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ const UserForm = (props: UserFormProps) => { | |
onSubmit={form.handleSubmit(onSubmit)} | ||
className="w-full max-w-sm flex flex-col gap-4 justify-center items-center" | ||
> | ||
<h1 className={cn(tertiaryFont.className, "text-3xl font-bold")}> | ||
<h1 className="text-3xl font-bold"> | ||
{ | ||
formType === "signup" ? "Sign Up" : "Sign In" | ||
} | ||
|
@@ -95,9 +95,9 @@ const UserForm = (props: UserFormProps) => { | |
</form> | ||
</Form> | ||
<div> | ||
<div className="flex flex-col text-xs gap-1 justify-center items-center"> | ||
<div className="flex flex-col text-sm gap-1 justify-center items-center"> | ||
<h1>{formType === "signup" ? "Already have an account?" : "Please send an email to access the demo:"}</h1> | ||
<h1>[email protected]</h1> | ||
<a className="text-blue-500" href="mailto:[email protected]">[email protected]</a> | ||
</div> | ||
{/* {formType === "signup" ? "Already have an account?" : "To request access, please send an email to:"} */} | ||
{/* <Link | ||
|