mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 15:26:36 +00:00
feat(auth): add sign-in and sign-up pages
This commit is contained in:
parent
095af823e4
commit
2d872da445
5
src/app/(auth)/sign-in/page.tsx
Normal file
5
src/app/(auth)/sign-in/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
import { SignInForm } from "@/components/sign-in-form";
|
||||
|
||||
export default function SignInPage() {
|
||||
return <SignInForm />;
|
||||
}
|
5
src/app/(auth)/sign-up/page.tsx
Normal file
5
src/app/(auth)/sign-up/page.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
import { SignUpForm } from "@/components/sign-up-form";
|
||||
|
||||
export default function SignUpPage() {
|
||||
return <SignUpForm />;
|
||||
}
|
Loading…
Reference in New Issue
Block a user