added new start page

This commit was merged in pull request #840.
This commit is contained in:
victorAnumudu
2024-11-05 13:59:10 +01:00
parent 4aed14a545
commit fd0fec0060
6 changed files with 136 additions and 39 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from "react";
import LoginLanding from "../components/AuthPages/Login/LoginLanding";
function LoginLandingPage() {
return (
<>
<LoginLanding />
</>
);
}
export default LoginLandingPage;