Skip to content

Commit ecb1665

Browse files
committed
1 parent f2117e4 commit ecb1665

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/components/ErrorComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export function ErrorComponent({ className, error, title, showReturnToHome }: Er
3636
</Button>
3737
</Link>
3838
) : (
39-
<Link to="/">
39+
<Link to="/sign-in">
4040
<Button>
4141
{' '}
4242
<ArrowLeft /> Go to Sign In Page

src/components/Navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ function AnonymousNav() {
252252
</NavigationMenuItem>
253253
<NavigationMenuItem>
254254
<NavigationMenuLink asChild>
255-
<Link to="/" className="flex-row items-center" activeProps={activeLinkProps}>
255+
<Link to="/sign-in" className="flex-row items-center" activeProps={activeLinkProps}>
256256
<LogInIcon /> Sign In
257257
</Link>
258258
</NavigationMenuLink>

src/components/NotFoundComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export function NotFoundComponent() {
2626
</Button>
2727
</Link>
2828
) : (
29-
<Link to="/">
29+
<Link to="/sign-in">
3030
<Button>
3131
{' '}
3232
<ArrowLeft /> Go Sign In Page

src/features/auth/ForgotPassword.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export function ForgotPassword() {
7878
</form>
7979
</Form>
8080
<div className="flex px-4 mt-4 underline place-content-between">
81-
<Link className="text-sm" to="/">
81+
<Link className="text-sm" to="/sign-in">
8282
Sign in to your account
8383
</Link>
8484
<Link className="text-sm" to="/sign-up">

src/features/auth/SignUp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export function SignUp() {
157157
</form>
158158
</Form>
159159
<div className="flex px-4 mt-4 underline place-content-between">
160-
<Link className="m-auto text-sm" to="/">
160+
<Link className="m-auto text-sm" to="/sign-in">
161161
Already have an account? Sign in instead.
162162
</Link>
163163
</div>

0 commit comments

Comments
 (0)