Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#135] Delete images and code related to the logo in the login screen. #143

Merged
merged 3 commits into from
Jan 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ FROM nginx

COPY --from=build /usr/src/app/public/index.html /usr/share/nginx/html/index.html
COPY --from=build /usr/src/app/public/build/bundle.js /usr/share/nginx/html/build/bundle.js
COPY --from=build /usr/src/app/public/images/InterExcellence.png /usr/share/nginx/html/images/InterExcellence.png
COPY --from=build /usr/src/app/public/images/MSMT.png /usr/share/nginx/html/images/MSMT.png

RUN chmod a+r -R /usr/share/nginx/html

Expand Down
Binary file removed public/images/InterExcellence.png
Binary file not shown.
Binary file removed public/images/MSMT.png
Binary file not shown.
Binary file removed src/assets/InterExcellence.png
Binary file not shown.
Binary file removed src/assets/MSMT.png
Binary file not shown.
8 changes: 0 additions & 8 deletions src/components/login/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ import { yupResolver } from "@hookform/resolvers/yup";
import {ROUTES} from "@utils/constants";


// @ts-ignore
import msmtLogo from '../../assets/MSMT.png';
// @ts-ignore
import interExcellenceLogo from '../../assets/InterExcellence.png';

const Login = () => {
const { classes } = useStyles();
Expand Down Expand Up @@ -118,10 +114,6 @@ const Login = () => {
)}
</form>
</div>
<div className={classes.footer}>
<img src={msmtLogo} alt="MSMT Logo" className={classes.logo}/>
<img src={interExcellenceLogo} alt="InterExcellence logo" className={classes.logo}/>
</div>
</Container>
);
}
Expand Down
Loading