Skip to content

Commit

Permalink
feat : 메인페이지 링크 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
gibeom0218 committed Apr 7, 2024
1 parent 38de3a5 commit 74d6fb2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Inter } from "next/font/google";
import Link from "next/link";
import Input from "@/components/Input";

const inter = Inter({ subsets: ["latin"] });

Expand All @@ -16,6 +15,9 @@ export default function Home() {
<Link href="/signin">
<h1>signin페이지로 이동</h1>
</Link>
<Link href="/signup">
<h1>signup페이지로 이동</h1>
</Link>
</>
);
}

0 comments on commit 74d6fb2

Please sign in to comment.