created and organized login and register pages.
This commit is contained in:
parent
c756583dc7
commit
6e504f2e0e
9
app/(auth)/(routes)/login/page.tsx
Normal file
9
app/(auth)/(routes)/login/page.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
const LoginPage = () => {
|
||||
return (
|
||||
<div>
|
||||
Login Page!
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default LoginPage;
|
9
app/(auth)/(routes)/register/page.tsx
Normal file
9
app/(auth)/(routes)/register/page.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
const RegisterPage = () => {
|
||||
return (
|
||||
<div>
|
||||
Register!
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default RegisterPage;
|
Loading…
x
Reference in New Issue
Block a user