initial commit

This commit is contained in:
Harikrishnan Gopal
2024-12-03 15:53:50 +05:30
commit 956cf14c53
26 changed files with 22820 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
import React from "react";
import { useNavigate } from "react-router-dom";
const Welcome = () => {
const navigate = useNavigate();
const handleRedirect = () => {
navigate("/AuthpPage");
};
return (
<div className="container text-center mt-5">
<div className="row justify-content-center">
<div className="col-md-6">
<h1 className="mb-4">Welcome Page</h1>
<button
onClick={handleRedirect}
className="btn btn-primary btn-lg"
>
SIGN IN / SIGN UP
</button>
</div>
</div>
</div>
);
};
export default Welcome;