Skip to content

Commit

Permalink
nav between login and storefront
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyzlei committed Oct 5, 2023
1 parent 9891ab4 commit cc3764b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/login/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use client';

import Link from 'next/link';
import LoginForm from '../../components/LoginForm';

import {
Expand All @@ -22,7 +23,9 @@ export default function App() {
<LoginContent>
<WelcomeSign>Welcome</WelcomeSign>
<LoginForm />
<Button>Log In</Button>
<Button>
<Link href="/storefront">Log In</Link>
</Button>
</LoginContent>
</LoginBox>
</Fullscreen>
Expand Down

0 comments on commit cc3764b

Please sign in to comment.