Skip to content

Commit

Permalink
nav between landing and login
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyzlei committed Oct 5, 2023
1 parent 7f04fee commit 9891ab4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import Link from "next/link";

export default function Checkout() {
return (
<main>
<div>Landing Page</div>
<Link href="/login">Login</Link>
</main>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/InputFields.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import { FormHeaders, Input } from '../app/screens/login/styles';
import { FormHeaders, Input } from '../app/login/styles';

export default function InputFields(props: {
text: string;
Expand Down

0 comments on commit 9891ab4

Please sign in to comment.