update copy for sign in views #238

Merged
talksik merged 5 commits from sign-in-page into main 2026-06-02 16:39:11 +00:00
3 changed files with 10 additions and 6 deletions
@@ -34,7 +34,7 @@ jobs:
- name: Run Code Linter - name: Run Code Linter
run: yarn lint run: yarn lint
- name: Run Unit Tests - name: Run Format Check
run: yarn format:check run: yarn format:check
desktop: desktop:
@@ -62,7 +62,7 @@ jobs:
- name: Run Code Linter - name: Run Code Linter
run: yarn lint run: yarn lint
- name: Run Unit Tests - name: Run Format Check
run: yarn format:check run: yarn format:check
+5 -2
View File
@@ -31,8 +31,11 @@ export function EmailStep({ onCodeSent }: EmailStepProps) {
return ( return (
<form onSubmit={handleSubmit} className="flex flex-col gap-4"> <form onSubmit={handleSubmit} className="flex flex-col gap-4">
<div className="flex flex-col gap-2"> <div className="flex flex-col gap-2">
<H3>Sign in</H3> <H3>Welcome</H3>
<Muted>Enter your email to receive a sign-in code.</Muted> <Muted>
Enter your email to sign in or create an account. We'll send a code to
verify it.
</Muted>
</div> </div>
<div className="flex flex-col gap-1.5"> <div className="flex flex-col gap-1.5">
+3 -2
View File
@@ -60,9 +60,10 @@ function EmailStep({ onCodeSent }: { onCodeSent: (email: string) => void }) {
return ( return (
<View className="gap-5"> <View className="gap-5">
<View className="gap-1"> <View className="gap-1">
<Text className="text-foreground text-3xl font-semibold">Sign in</Text> <Text className="text-foreground text-3xl font-semibold">Welcome</Text>
<Text className="text-muted-foreground text-base"> <Text className="text-muted-foreground text-base">
Enter your email to receive a sign-in code. Enter your email to sign in or create an account. We&apos;ll send a
code to verify it.
</Text> </Text>
</View> </View>