removed unneeded pages

This commit is contained in:
Kyla 2023-10-07 13:14:43 -07:00
parent 239ff1b33b
commit dc356f833c
3 changed files with 0 additions and 32 deletions

View File

@ -1,9 +0,0 @@
const LoginPage = () => {
return (
<div>
Login Page!
</div>
);
}
export default LoginPage;

View File

@ -1,9 +0,0 @@
const RegisterPage = () => {
return (
<div>
Register!
</div>
);
}
export default RegisterPage;

View File

@ -1,14 +0,0 @@
import { Button } from "@/components/ui/button";
export default function Home() {
return (
<div>
<p className='text-3xl font-bold text-indigo-500'>
Hello Discord Clone
</p>
<Button>
Click Me
</Button>
</div>
)
}