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

added_footer_logo_arrow #28

Merged
merged 2 commits into from
Apr 27, 2023
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
6 changes: 3 additions & 3 deletions client/src/Components/Footer.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import React from "react";
import { Card } from "react-bootstrap";

import TeamLogo from "../assets/TeamLogo.png";
const Footer = () => {
return (
<footer
className="bg-danger py-3 border border-dark fixed-bottom "
style={{ color: "red" }}
style={{ color: "red", display: "flex", justifyContent: "flex-end" }}
>
<Card.Img variant="top" src="holder.js/200px160" />
<Card.Img src={TeamLogo} style={{ width: "8%", marginRight: "1%" }} />
</footer>
);
};
Expand Down
14 changes: 13 additions & 1 deletion client/src/Components/MainContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from "react";
// import { useState } from "react";
import Button from "react-bootstrap/Button";
import { Card, Form, Col, Container, Row } from "react-bootstrap";

const MainContent = () => {
// const [val, setVal] = useState("");
return (
Expand Down Expand Up @@ -44,6 +43,19 @@ const MainContent = () => {
</Card.Body>
</Card>
</Col>
<Col style={{ display: "contents" }}>
<svg
xmlns="http://www.w3.org/2000/svg"
width="50"
height="50"
fill="currentColor"
className="bi bi-arrow-right-square-fill"
viewBox="0 0 16 16"
style={{ marginTop: "11%", marginLeft: "2%", marginRight: "2%" }}
>
<path d="M0 14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v12zm4.5-6.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5a.5.5 0 0 1 0-1z" />
</svg>
</Col>
<Col>
<Card>
<Card.Body>
Expand Down
Binary file added client/src/assets/TeamLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions client/src/assets/arrowImg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.